From a2c68497b7fbf9e3d510df8f102c5041d53fe45a Mon Sep 17 00:00:00 2001 From: Oliver Schwengers Date: Tue, 12 Nov 2024 16:29:56 +0100 Subject: [PATCH] add Python 3.11 to supported versions --- .github/workflows/ci-lint.yml | 2 +- .github/workflows/ci-package.yml | 2 +- setup.py | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-lint.yml b/.github/workflows/ci-lint.yml index 7b428ec..16f8e98 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 5293597..11edc4a 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 5ef63a1..b2f3ef7 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',