Skip to content

Commit

Permalink
Enable python 3.10 and 3.11.
Browse files Browse the repository at this point in the history
  • Loading branch information
TkTech committed Jan 8, 2023
1 parent 3575bf6 commit 0c3bef2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,16 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9, pypy3.7]
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", pypy3.7]

steps:
# Python needs to be setup before checkout to prevent files from being
# left in the source tree. See setup-python/issues/106.
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- uses: actions/checkout@v3

- name: Installing python dependencies
run: |
python -m pip install --upgrade pip setuptools
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
Expand Down

0 comments on commit 0c3bef2

Please sign in to comment.