From 700f78aae9e75666cc85ef03cbefd587744e6f7e Mon Sep 17 00:00:00 2001 From: Marco Mangano <36549388+marcomangano@users.noreply.github.com> Date: Mon, 25 Mar 2024 12:54:28 -0400 Subject: [PATCH] Actually updating minimum python version --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b4642cdf..646d3408 100644 --- a/setup.py +++ b/setup.py @@ -101,7 +101,6 @@ def copy_shared_libraries(): long_description="pyOptSparse is a Python package for formulating and solving nonlinear constrained optimization problems", platforms=["Linux"], keywords="optimization", - python_requires=">=3.9", install_requires=[ "sqlitedict>=1.6", "numpy>=1.21", @@ -135,7 +134,7 @@ def copy_shared_libraries(): package_data={ "": ["*.so", "*.lib", "*.pyd", "*.pdb", "*.dylib", "assets/*", "LICENSE"], }, - python_requires=">=3.7", + python_requires=">=3.9", entry_points={ "gui_scripts": [ "optview = pyoptsparse.postprocessing.OptView:main",