Skip to content

Commit

Permalink
add Python 3.11 to supported versions
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwengers committed Nov 12, 2024
1 parent 1fbf69d commit a2c6849
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: 'ubuntu-latest'
strategy:
matrix:
python-version: ['3.9', '3.10']
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-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.9', '3.10']
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
3 changes: 2 additions & 1 deletion 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.9, <3.11',
python_requires='>=3.9, <3.12',
include_package_data=False,
zip_safe=False,
install_requires=[
Expand All @@ -49,6 +49,7 @@
'Programming Language :: Python :: 3 :: Only',
'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 a2c6849

Please sign in to comment.