diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index dc63554..f590a41 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -25,10 +25,6 @@ jobs: python3 -m pip install --upgrade pip # Install build deps python3 -m pip install setuptools wheel - # If requirements.txt exists, install from it - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - # Install the package from setup.py - python3 setup.py install - name: Build package run: python3 setup.py sdist bdist_wheel diff --git a/README.md b/README.md index 30d16e4..67a6bf1 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Install is either via pip or cloning the repository. From pip: ```sh -python3 -m pip install thothlibrary==0.28.0 +python3 -m pip install thothlibrary==0.28.1 ``` Or from the repo: diff --git a/thothlibrary/__init__.py b/thothlibrary/__init__.py index c257465..4461b7c 100644 --- a/thothlibrary/__init__.py +++ b/thothlibrary/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 """GraphQL client for Thoth""" -__version__ = "0.28.0" +__version__ = "0.28.1" __author__ = "Javier Arias " __copyright__ = "Copyright (c) 2020 Open Book Publishers" __license__ = "Apache 2.0"