Skip to content

Commit

Permalink
setup.py: Specify minimum supported python version
Browse files Browse the repository at this point in the history
  • Loading branch information
ales-erjavec committed Jul 12, 2024
1 parent 38bfff8 commit 4466f94
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
from distutils.command import config, build
from distutils.core import Extension

if sys.version_info < (3, 4):
sys.exit('Orange requires Python >= 3.4')

try:
import numpy
Expand Down Expand Up @@ -81,6 +79,9 @@
'Intended Audience :: Developers',
]

PYTHON_REQUIRES = ">=3.9"


requirements = ['requirements-core.txt', 'requirements-gui.txt']


Expand Down Expand Up @@ -512,6 +513,7 @@ def setup_package():
data_files=DATA_FILES,
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
python_requires=PYTHON_REQUIRES,
entry_points=ENTRY_POINTS,
zip_safe=False,
test_suite='Orange.tests.suite',
Expand Down

0 comments on commit 4466f94

Please sign in to comment.