mirror of
https://github.com/sprockets/sprockets.http.git
synced 2024-11-14 11:19:26 +00:00
Add support for python 3.10
This commit is contained in:
parent
8f4c6e9555
commit
e85e7fbc9e
4 changed files with 4 additions and 3 deletions
2
.github/workflows/deploy.yaml
vendored
2
.github/workflows/deploy.yaml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/testing.yaml
vendored
2
.github/workflows/testing.yaml
vendored
|
@ -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:
|
||||
|
|
|
@ -12,7 +12,7 @@ Setup
|
|||
|
||||
code::
|
||||
|
||||
python3.9 -m venv env
|
||||
python3.10 -m venv env
|
||||
pip install -r requires/development.txt
|
||||
|
||||
|
||||
|
|
1
setup.py
1
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',
|
||||
|
|
Loading…
Reference in a new issue