Skip to content

Commit 92f576b

Browse files
committed
Merge branch 'release/v0.28.2'
2 parents e2ec229 + b58940b commit 92f576b

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/publish-to-pypi.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
python3 -m pip install --upgrade pip
2626
# Install build deps
2727
python3 -m pip install setuptools wheel
28+
# If requirements.txt exists, install from it
29+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
2830
2931
- name: Build package
3032
run: python3 setup.py sdist bdist_wheel

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Install is either via pip or cloning the repository.
99

1010
From pip:
1111
```sh
12-
python3 -m pip install thothlibrary==0.28.1
12+
python3 -m pip install thothlibrary==0.28.2
1313
```
1414

1515
Or from the repo:

thothlibrary/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22
"""GraphQL client for Thoth"""
33

4-
__version__ = "0.28.1"
4+
__version__ = "0.28.2"
55
__author__ = "Javier Arias <javi@openbookpublishers.com>"
66
__copyright__ = "Copyright (c) 2020 Open Book Publishers"
77
__license__ = "Apache 2.0"

0 commit comments

Comments
 (0)