Skip to content

Commit

Permalink
Merge branch 'release/v0.10.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
ja573 committed Feb 3, 2022
2 parents 7a59e2c + dd10115 commit aec6cf3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# Upgrade pip
python3 -m pip install --upgrade pip
# Install build deps
python3 -m pip install setuptools wheel twine==3.7.1
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
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Build and publish to PyPI
run: |
python3 setup.py sdist bdist_wheel
python3 -m twine upload dist/*
pipx run twine upload dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Install is either via pip or cloning the repository.

From pip:
```sh
python3 -m pip install thothlibrary==0.10.3
python3 -m pip install thothlibrary==0.10.4
```

Or from the repo:
Expand Down
2 changes: 1 addition & 1 deletion thothlibrary/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
"""GraphQL client for Thoth"""

__version__ = "0.10.3"
__version__ = "0.10.4"
__author__ = "Javier Arias <[email protected]>"
__copyright__ = "Copyright (c) 2020 Open Book Publishers"
__license__ = "Apache 2.0"
Expand Down

0 comments on commit aec6cf3

Please sign in to comment.