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