Add support for python 3.10

This commit is contained in:
Andrew Rabert 2022-03-15 17:48:03 -04:00
parent 8f4c6e9555
commit e85e7fbc9e
4 changed files with 4 additions and 3 deletions

View file

@ -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

View file

@ -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:

View file

@ -12,7 +12,7 @@ Setup
code::
python3.9 -m venv env
python3.10 -m venv env
pip install -r requires/development.txt

View file

@ -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',