Skip to content

Commit

Permalink
drop python=3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwengers committed Nov 11, 2024
1 parent 01de8ea commit ac7e00f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 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.8', '3.10']
python-version: ['3.9', '3.10']
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.8', '3.9', '3.10']
python-version: ['3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.8, <3.11',
python_requires='>=3.9, <3.11',
include_package_data=False,
zip_safe=False,
install_requires=[
Expand All @@ -47,7 +47,6 @@
classifiers=[
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit ac7e00f

Please sign in to comment.