Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
149 changes: 95 additions & 54 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ keywords = [
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">= 3.9"
requires-python = ">= 3.9.2"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion: If there weren't any fixes that you need, then I'd avoid bumping this.

Copy link
Author

@ascii-dev ascii-dev Mar 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@robin92 cryptography (46.0.5) requires >=3.8 but explicitly excludes 3.9.0 and 3.9.1.

dependencies = [
"cryptography >=3.1",
"cryptography >=46.0.5",
"defusedxml",
"pyopenssl <24.3.0",
"pyopenssl >=25.3.0",
"python-dateutil",
"requests >=2.0.0,<3.0.0", # ^2 means compatible with 2.x
"xmlschema >=2.0.0,<3.0.0"
Expand Down Expand Up @@ -68,7 +68,6 @@ flake8-bugbear = "^22.8.23"
flake8-logging-format = "^0.7.5"
ipdb = "^0.13.9"
mypy = "^1.0.0"
types-pyopenssl = "^23.0.0.3"
types-python-dateutil = "^2.8.19.6"
types-setuptools = "^67.2.0.1"
types-six = "^1.16.21.4"
Expand Down
Loading