From ac928feee4462acc245229e33e7d16bfb1747a14 Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Mon, 26 Jun 2023 09:02:59 +0100 Subject: [PATCH 1/3] Upgrade dependencies --- requirements.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index b3e35ae..e469b61 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ -requests==2.28.1 +requests==2.31.0 fire==0.5.0 -munch==2.5.0 -requests_mock==1.10.0 -ascii_magic==1.6 +munch==3.0.0 +requests_mock==1.11.0 +ascii_magic==2.3.0 graphqlclient==0.2.4 \ No newline at end of file From 7f699cc3bbc16f62f0ba5fce0192dec4eca97220 Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Mon, 26 Jun 2023 09:10:00 +0100 Subject: [PATCH 2/3] Pin requirements in setup.py --- setup.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1d7d342..b7696ee 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,14 @@ "thothlibrary.thoth-0_9_0" ], include_package_data=True, - install_requires=["graphqlclient", "requests", "munch"], + install_requires=[ + "requests==2.31.0", + "fire==0.5.0", + "munch==3.0.0", + "requests_mock==1.11.0", + "ascii_magic==2.3.0", + "graphqlclient==0.2.4", + ], long_description=LONG_DESCRIPTION, long_description_content_type="text/markdown", license="Apache 2.0", From cc91bc9cd0768b3e63d1ad3748509f914bef9564 Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Mon, 26 Jun 2023 09:17:07 +0100 Subject: [PATCH 3/3] Bump v0.20.1 --- README.md | 2 +- thothlibrary/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index af69827..17c345c 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.20.0 +python3 -m pip install thothlibrary==0.20.1 ``` Or from the repo: diff --git a/thothlibrary/__init__.py b/thothlibrary/__init__.py index 85189b0..d474fd7 100644 --- a/thothlibrary/__init__.py +++ b/thothlibrary/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 """GraphQL client for Thoth""" -__version__ = "0.20.0" +__version__ = "0.20.1" __author__ = "Javier Arias " __copyright__ = "Copyright (c) 2020 Open Book Publishers" __license__ = "Apache 2.0"