From e0b2918123f96c0bf2254997f3e3403f86e1d691 Mon Sep 17 00:00:00 2001 From: JLSteenwyk Date: Tue, 24 Oct 2023 15:08:48 -0700 Subject: [PATCH] updated setup.py to have 3.9 and 3.10 --- .github/workflows/ci.yml | 8 ++++---- setup.py | 3 +-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a190e25..e78c59a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ jobs: runs-on: macos-latest strategy: matrix: - python-version: [3.7, 3.8] + python-version: ["3.9", "3.10"] steps: - uses: actions/checkout@master - name: Set up Python ${{ matrix.python-version }} @@ -26,13 +26,13 @@ jobs: test-full: runs-on: macos-latest env: - PYTHON: '3.9' + PYTHON: "3.10" steps: - uses: actions/checkout@master - name: Setup Python uses: actions/setup-python@master with: - python-version: 3.9 + python-version: "3.10" - name: Install dependencies run: | pip install -r requirements.txt @@ -87,4 +87,4 @@ jobs: with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} BRANCH: gh-pages - FOLDER: docs/_build/html \ No newline at end of file + FOLDER: docs/_build/html diff --git a/setup.py b/setup.py index 641d0470..a9495da5 100644 --- a/setup.py +++ b/setup.py @@ -12,9 +12,8 @@ "Operating System :: OS Independent", "Intended Audience :: Science/Research", "Programming Language :: Python", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Topic :: Scientific/Engineering", ]