diff --git a/.github/workflows/ci-lint.yml b/.github/workflows/ci-lint.yml index 7b428ecb..16f8e982 100644 --- a/.github/workflows/ci-lint.yml +++ b/.github/workflows/ci-lint.yml @@ -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 }} diff --git a/.github/workflows/ci-package.yml b/.github/workflows/ci-package.yml index 52935974..11edc4a0 100644 --- a/.github/workflows/ci-package.yml +++ b/.github/workflows/ci-package.yml @@ -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 }} diff --git a/setup.py b/setup.py index 5ef63a10..b2f3ef7f 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ author_email='oliver.schwengers@computational.bio.uni-giessen.de', 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=[ @@ -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',