From d8e9b8557393aec2f4a1f4cbb9802699b94af4db Mon Sep 17 00:00:00 2001 From: Serhii Date: Mon, 27 Jul 2026 15:42:30 +0300 Subject: [PATCH] cryptography < 47 --- CHANGELOG.md | 5 +++++ auth_tkt/__init__.py | 2 +- requirements.txt | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74fa2c6..24132fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.3.3 + +* Increased maximum allowed version of Cryptography library. + Now it requires cryptography < 47. + ## 0.3.2 * Increased maximum allowed version of Cryptography library. diff --git a/auth_tkt/__init__.py b/auth_tkt/__init__.py index 758efc4..cb21844 100644 --- a/auth_tkt/__init__.py +++ b/auth_tkt/__init__.py @@ -1,2 +1,2 @@ __doc__ = 'Python implementation of mod_auth_tkt cookies' -__version__ = '0.3.2' +__version__ = '0.3.3' diff --git a/requirements.txt b/requirements.txt index a311d76..f4341f1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -cryptography < 46 +cryptography < 47 diff --git a/setup.py b/setup.py index a2824ce..233b1e1 100644 --- a/setup.py +++ b/setup.py @@ -30,5 +30,5 @@ 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', ], - install_requires=['cryptography < 46'] + install_requires=['cryptography < 47'] )