From 5f5f2012964c9914eca4b66c402f37d474e1712b Mon Sep 17 00:00:00 2001 From: Okke Harsta Date: Thu, 13 Jan 2022 13:18:10 +0100 Subject: [PATCH 1/3] Loosened the dependency version of Click Pinning the version of Click makes it impossible to upgrade other often used dependencies like Celery. --- .gitignore | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d395331..cc9f586 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ build/ .cache/ README.rst .vscode/launch.json +.venv diff --git a/setup.py b/setup.py index 78d3d38..0cf55d2 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ ], install_requires=[ 'aniso8601>=1.2.0', - 'Click == 6.7', + 'Click >= 6.7', 'future==0.16.0', 'jsonschema==2.6.0', 'language-tags==0.4.3', From c1a907289cd0c8c00a2172a8985afa86d7821045 Mon Sep 17 00:00:00 2001 From: Okke Harsta Date: Mon, 26 Sep 2022 14:01:47 +0200 Subject: [PATCH 2/3] Loosened dependency for pytz --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 2075009..42b283c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,7 +9,7 @@ pydux==0.2.2 PyLD==0.7.1 python-jose==3.0.1 python-mimeparse==1.6.0 -pytz==2017.2 +pytz >= 2017.2 requests >= 2.13 requests_cache >= 0.4.13 rfc3986==0.4.1 diff --git a/setup.py b/setup.py index 0cf55d2..7038b48 100644 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ 'PyLD==0.7.1', 'python-jose==3.0.1', 'python-mimeparse==1.6.0', - 'pytz==2017.2', + 'pytz >= 2017.2', 'requests >= 2.13', 'requests_cache==0.4.13', 'rfc3986==0.4.1', From 4a9336b2bba68c56e8187a7373749dbc161a80fb Mon Sep 17 00:00:00 2001 From: Okke Harsta Date: Wed, 23 Aug 2023 14:24:11 +0200 Subject: [PATCH 3/3] Loosened dependency for pycryptodome --- openbadges/version.py | 2 +- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/openbadges/version.py b/openbadges/version.py index 60222ef..5e8d792 100644 --- a/openbadges/version.py +++ b/openbadges/version.py @@ -1 +1 @@ -VERSION = (1, 1, 2) +VERSION = (1, 1, 3) diff --git a/requirements.txt b/requirements.txt index 42b283c..109fd68 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ future==0.16.0 jsonschema==2.6.0 language-tags==0.4.3 openbadges_bakery==1.1.0 -pycryptodome==3.6.6 +pycryptodome>=3.6.6 pydux==0.2.2 PyLD==0.7.1 python-jose==3.0.1 diff --git a/setup.py b/setup.py index 7038b48..9fd341f 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ 'jsonschema==2.6.0', 'language-tags==0.4.3', 'openbadges-bakery>=1.1.0', - 'pycryptodome==3.6.6', + 'pycryptodome>=3.6.6', 'pydux==0.2.2', 'PyLD==0.7.1', 'python-jose==3.0.1',