Skip to content

Commit

Permalink
Increase max python version
Browse files Browse the repository at this point in the history
  • Loading branch information
helegraf committed Jun 13, 2024
1 parent c081201 commit bcddca4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def read_file(file_name):
version=read_file('hpobench/__version__.py').split()[-1].strip('\''),
packages=setuptools.find_packages(exclude=['*.tests', '*.tests.*',
'tests.*', 'tests'],),
python_requires='>=3.6, <=3.10',
python_requires='>=3.6, <3.12',
install_requires=read_file('./requirements.txt').split('\n'),
extras_require=get_extra_requirements(),
test_suite='pytest',
Expand All @@ -48,6 +48,7 @@ def read_file(file_name):
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Development Status :: 3 - Alpha',
'Natural Language :: English',
'Environment :: Console',
Expand Down

0 comments on commit bcddca4

Please sign in to comment.