Skip to content

Commit

Permalink
Merge pull request #3589 from getnikola/py310
Browse files Browse the repository at this point in the history
Run tests on Python 3.10
  • Loading branch information
Kwpolska committed Dec 28, 2021
2 parents 4c15c72 + 1c19a5a commit 00d6664
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
strategy:
fail-fast: false
matrix:
python: [3.5, 3.6, 3.7, 3.8, 3.9]
python: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10']
image:
- ubuntu-latest
include:
- python: 3.9
- python: '3.10'
image: macos-latest
- python: 3.9
- python: '3.10'
image: windows-latest
runs-on: '${{ matrix.image }}'
steps:
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: [3.9]
python: ['3.10']
image:
- ubuntu-latest
runs-on: '${{ matrix.image }}'
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
strategy:
matrix:
python:
- 3.9
- '3.10'
runs-on: ubuntu-latest
steps:
- name: Check out code
Expand All @@ -108,7 +108,7 @@ jobs:
strategy:
matrix:
python:
- 3.9
- '3.10'
runs-on: ubuntu-latest
steps:
- name: Check out code
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@ def run(self):
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Text Processing :: Markup'],
Expand Down

0 comments on commit 00d6664

Please sign in to comment.