Skip to content

Commit e69e087

Browse files
f-wrightclaude
andauthored
Require urllib3 >=2.6.1 to avoid broken 2.6.0 release (#414)
urllib3 2.6.0 removed getheader()/getheaders() from HTTPResponse, breaking the OpenAPI-generated client. The methods were restored in 2.6.1 three days later. Bump the minimum to skip the broken version. To remove the deprecated getheader()/getheaders(), we'll need to bump the version of our generator. This introduced some more issues when I tried it, so leaving that for another time. --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 658d44f commit e69e087

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ packages = [
99
{include = "**/*.py", from = "src"},
1010
]
1111
readme = "README.md"
12-
version = "0.23.4"
12+
version = "0.24.0"
1313

1414
[tool.poetry.dependencies]
1515
# For certifi, use ">=" instead of "^" since it upgrades its "major version" every year, not really following semver
@@ -21,7 +21,7 @@ python = ">=3.9,<4.0"
2121
python-dateutil = "^2.9.0"
2222
requests = "^2.28.2"
2323
typer = "^0.15.4"
24-
urllib3 = "^2.5.0"
24+
urllib3 = "^2.6.1"
2525

2626
[tool.poetry.group.dev.dependencies]
2727
datamodel-code-generator = "^0.35.0"

0 commit comments

Comments
 (0)