From 93cf6790214271cdc91adf32e92a69bde15b9bef Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Tue, 26 Nov 2024 11:07:24 -0500 Subject: [PATCH] Prohibit Python 3.9.0, 3.9.1 -- they have a bug that causes errors --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0ba039a12..9a3d25dbe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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'",