From acb70be6b43303151e33b48edaa26bba9ea05f05 Mon Sep 17 00:00:00 2001 From: jdebacker Date: Wed, 6 Sep 2023 18:15:37 -0400 Subject: [PATCH] remove <=3.11 in setup.py --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3c97d8b90..5c3a18498 100755 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ ] }, include_packages=True, - python_requires=">=3.7.7, <=3.11", + python_requires=">=3.7.7", install_requires=[ "scipy>=1.7.1", "pandas>=1.2.5", @@ -45,6 +45,7 @@ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Topic :: Software Development :: Libraries :: Python Modules", ], tests_require=["pytest"],