Prohibit Python 3.9.0, 3.9.1 -- they have a bug that causes errors

This commit is contained in:
Alex Gaynor 2024-11-26 11:07:24 -05:00 committed by GitHub
parent d6cac753c2
commit 93cf679021
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -46,7 +46,7 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Security :: Cryptography",
]
requires-python = ">=3.7"
requires-python = ">=3.7,!=3.9.0,!=3.9.1"
dependencies = [
# Must be kept in sync with `build-system.requires`
"cffi>=1.12; platform_python_implementation != 'PyPy'",