Skip to content

Commit 5b21675

Browse files
remove urllib3 version restriction (#480)
* remove urllib3 version restriction * version bump
1 parent 557ddc9 commit 5b21675

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
The intended audience of this file is for py42 consumers -- as such, changes that don't affect
99
how a consumer would use the library (e.g. adding unit tests, updating documentation, etc) are not captured here.
1010

11+
## 1.29.1 - 2025-06-25
12+
13+
### Updated
14+
15+
- Updated readme to clarify deprecation.
16+
- Removed version cap for urllib3 dependency, allowing the use of more modern versions.
17+
1118
## 1.29.0 - 2025-05-06
1219

1320
### Fixed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
zip_safe=False,
3232
python_requires=">=3.6, <4",
3333
install_requires=[
34-
"urllib3>=1.26.6,<2",
34+
"urllib3>=1.26.6",
3535
"requests>=2.25.0",
3636
],
3737
extras_require={

src/py42/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# py42
22

3-
__version__ = "1.29.0"
3+
__version__ = "1.29.1"

0 commit comments

Comments
 (0)