Skip to content

Commit

Permalink
specify required Python versions to 3.8, 3.9, 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwengers committed Aug 18, 2023
1 parent 5521227 commit 20c21f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest']
python-version: ['3.8', '3.10']
python-version: ['3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author_email='[email protected]',
url='https://github.com/oschwengers/bakta',
packages=find_packages(include=['bakta', 'bakta.*']),
python_requires='>=3.8',
python_requires='>=3.8, <3.11',
include_package_data=False,
zip_safe=False,
install_requires=[
Expand All @@ -32,7 +32,7 @@
'alive-progress >= 3.0.1',
'PyYAML >= 6.0',
'pyrodigal >= 2.1.0',
'pyhmmer >= 0.8.1'
'pyhmmer >= 0.10.0'
],
entry_points={
'console_scripts': [
Expand All @@ -48,7 +48,6 @@
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Scientific/Engineering :: Bio-Informatics',
Expand Down

0 comments on commit 20c21f7

Please sign in to comment.