diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 537a9ca..10ce017 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -22,7 +22,7 @@ jobs: # Upgrade pip python3 -m pip install --upgrade pip # Install build deps - python3 -m pip install setuptools wheel twine + python3 -m pip install setuptools wheel twine==3.7.1 # If requirements.txt exists, install from it if [ -f requirements.txt ]; then pip install -r requirements.txt; fi # Install the package from setup.py diff --git a/README.md b/README.md index afa47db..03d385d 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.10.2 +python3 -m pip install thothlibrary==0.10.3 ``` Or from the repo: diff --git a/thothlibrary/__init__.py b/thothlibrary/__init__.py index f9da469..4a9b6e8 100644 --- a/thothlibrary/__init__.py +++ b/thothlibrary/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 """GraphQL client for Thoth""" -__version__ = "0.10.2" +__version__ = "0.10.3" __author__ = "Javier Arias " __copyright__ = "Copyright (c) 2020 Open Book Publishers" __license__ = "Apache 2.0"