From 3d034ffed6da2e7fb8b39be7f2ec2c16cd490202 Mon Sep 17 00:00:00 2001 From: Lukas Kluft Date: Wed, 16 Nov 2022 22:43:06 +0100 Subject: [PATCH] Update supported Python versions --- .github/workflows/build-book.yml | 2 +- .github/workflows/build-test.yml | 4 ++-- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-book.yml b/.github/workflows/build-book.yml index 2bda7040..6c7c6468 100644 --- a/.github/workflows/build-book.yml +++ b/.github/workflows/build-book.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8] + python-version: ["3.9"] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index a4fc585f..8bb786d8 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -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 @@ -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 diff --git a/setup.py b/setup.py index ee76ba83..8f79ddc6 100644 --- a/setup.py +++ b/setup.py @@ -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',