File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Install is either via pip or cloning the repository.
99
1010From pip:
1111``` sh
12- python3 -m pip install thothlibrary==0.28.1
12+ python3 -m pip install thothlibrary==0.28.2
1313```
1414
1515Or from the repo:
Original file line number Diff line number Diff line change 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"
You can’t perform that action at this time.
0 commit comments