From 325f1c1b7f7116a072cbad5aa745e98e57d8cfe5 Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Thu, 7 Nov 2024 15:24:58 +0000 Subject: [PATCH 1/2] Do not install package before building --- .github/workflows/publish-to-pypi.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index f590a41..db75f0e 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -25,6 +25,8 @@ 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 - name: Build package run: python3 setup.py sdist bdist_wheel From b58940b3be1baa943c67624c1850c22c24e2542d Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Thu, 7 Nov 2024 15:25:35 +0000 Subject: [PATCH 2/2] Bump v0.28.2 --- README.md | 2 +- thothlibrary/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 67a6bf1..869ef65 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.1 +python3 -m pip install thothlibrary==0.28.2 ``` Or from the repo: diff --git a/thothlibrary/__init__.py b/thothlibrary/__init__.py index 4461b7c..7d67577 100644 --- a/thothlibrary/__init__.py +++ b/thothlibrary/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 """GraphQL client for Thoth""" -__version__ = "0.28.1" +__version__ = "0.28.2" __author__ = "Javier Arias " __copyright__ = "Copyright (c) 2020 Open Book Publishers" __license__ = "Apache 2.0"