From bdcad5bc8f2918043df0b7798b8b371fad5a72b5 Mon Sep 17 00:00:00 2001 From: Cecilia Stevens <63068179+ceciliastevens@users.noreply.github.com> Date: Wed, 25 Jun 2025 08:29:26 -0400 Subject: [PATCH 1/2] remove urllib3 version restriction --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ce7f0c92..c6d7c363 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ zip_safe=False, python_requires=">=3.6, <4", install_requires=[ - "urllib3>=1.26.6,<2", + "urllib3>=1.26.6", "requests>=2.25.0", ], extras_require={ From ca423cd81b122f8e3037164bdc60b868f0393c12 Mon Sep 17 00:00:00 2001 From: Cecilia Stevens <63068179+ceciliastevens@users.noreply.github.com> Date: Wed, 25 Jun 2025 10:06:42 -0400 Subject: [PATCH 2/2] version bump --- CHANGELOG.md | 7 +++++++ src/py42/__version__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb79f630..00726679 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 The intended audience of this file is for py42 consumers -- as such, changes that don't affect how a consumer would use the library (e.g. adding unit tests, updating documentation, etc) are not captured here. +## 1.29.1 - 2025-06-25 + +### Updated + +- Updated readme to clarify deprecation. +- Removed version cap for urllib3 dependency, allowing the use of more modern versions. + ## 1.29.0 - 2025-05-06 ### Fixed diff --git a/src/py42/__version__.py b/src/py42/__version__.py index fc7f0ef6..407f86f6 100644 --- a/src/py42/__version__.py +++ b/src/py42/__version__.py @@ -1,3 +1,3 @@ # py42 -__version__ = "1.29.0" +__version__ = "1.29.1"