Skip to content

Commit

Permalink
Merge pull request atmtools#221 from lkluft/bump-python
Browse files Browse the repository at this point in the history
Drop support for Python <3.9
  • Loading branch information
lkluft authored Nov 29, 2023
2 parents cf372eb + bcb761c commit 369b895
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.9"]
python-version: ["3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
name: [ubuntu, macos]
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11"]

include:
- name: ubuntu
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
python -m pip list
- name: Lint with flake8
if: matrix.name == 'ubuntu' && matrix.python-version == '3.9'
if: matrix.name == 'ubuntu' && matrix.python-version == '3.11'
continue-on-error: true
run: |
python -m pip install flake8
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ long_description_content_type = text/markdown
classifiers =
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
python_requires = >=3.8
python_requires = >=3.9
packages = find_namespace:
include_package_data = True
install_requires =
Expand Down

0 comments on commit 369b895

Please sign in to comment.