From e85e7fbc9eece9f40af3028a7799d312886287b6 Mon Sep 17 00:00:00 2001 From: Andrew Rabert Date: Tue, 15 Mar 2022 17:48:03 -0400 Subject: [PATCH] Add support for python 3.10 --- .github/workflows/deploy.yaml | 2 +- .github/workflows/testing.yaml | 2 +- docs/contributing.rst | 2 +- setup.py | 1 + 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 75dc3ce..dcb1948 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -7,7 +7,7 @@ jobs: deploy: runs-on: ubuntu-latest if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') && github.repository == 'sprockets/sprockets.http' - container: python:3.9-alpine + container: python:3.10-alpine steps: - name: Checkout repository uses: actions/checkout@v1 diff --git a/.github/workflows/testing.yaml b/.github/workflows/testing.yaml index 82f2975..3e58ff6 100644 --- a/.github/workflows/testing.yaml +++ b/.github/workflows/testing.yaml @@ -15,7 +15,7 @@ jobs: timeout-minutes: 3 strategy: matrix: - python: [3.7, 3.8, 3.9] + python: ["3.7", "3.8", "3.9", "3.10"] container: image: python:${{ matrix.python }}-alpine steps: diff --git a/docs/contributing.rst b/docs/contributing.rst index 5884423..d901874 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -12,7 +12,7 @@ Setup code:: - python3.9 -m venv env + python3.10 -m venv env pip install -r requires/development.txt diff --git a/setup.py b/setup.py index 25cb004..4887be5 100755 --- a/setup.py +++ b/setup.py @@ -50,6 +50,7 @@ setuptools.setup( 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: Implementation :: CPython', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Software Development :: Libraries',