Skip to content

Commit

Permalink
Update supported Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
lkluft committed Nov 23, 2022
1 parent 31e8861 commit 3d034ff
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-latest
strategy:
matrix:
python-version: [3.8]
python-version: ["3.9"]

steps:
- uses: actions/checkout@v2
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.7, 3.8, 3.9]
python-version: ["3.8", "3.9", "3.10"]

include:
- name: ubuntu
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
python -m pip list
- name: Lint with flake8
if: matrix.name == 'ubuntu' && matrix.python-version == '3.7'
if: matrix.name == 'ubuntu' && matrix.python-version == '3.9'
continue-on-error: true
run: |
python -m pip install flake8
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
python_requires='>=3.6',
python_requires='>=3.8',
include_package_data=True,
install_requires=[
'matplotlib>=2.0.0',
Expand Down

0 comments on commit 3d034ff

Please sign in to comment.