Skip to content

Commit

Permalink
Restrict pyOpenSSL version range to compatible versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Dec 1, 2024
1 parent dc5fe89 commit d60cbce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"write_to": "tsp_client/version.py",
},
setup_requires=["setuptools_scm >= 3.4.3"],
install_requires=["asn1crypto >= 0.24.0", "requests >= 2.18.4", "pyOpenSSL >= 20.0.0"],
install_requires=["asn1crypto >= 1.4.0", "requests >= 2.25.1", "pyOpenSSL >= 21.0.0, < 24"],
extras_require={
"tests": [
"ruff",
Expand Down Expand Up @@ -47,6 +47,7 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)

0 comments on commit d60cbce

Please sign in to comment.