Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
update python requirement version >=3.10
  • Loading branch information
jeanrjc authored Feb 6, 2025
1 parent 5236ff2 commit a1c3f45
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ def read_req(req: str):
'Environment :: Console',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
python_requires='>=3.7',
python_requires='>=3.10',
install_requires=read_req('requirements.txt'),
extras_require=dict(dev=read_req('requirements-dev.txt')),
packages=[
Expand Down

0 comments on commit a1c3f45

Please sign in to comment.