summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHugo van Kemenade <hugovk@users.noreply.github.com>2021-10-23 12:39:36 +0300
committerGitHub <noreply@github.com>2021-10-23 11:39:36 +0200
commit95ee5f64d6a7611772bd85aed70796d423b37a01 (patch)
tree3a17708c41d6c9827f160fb55aa56d0e79e3c887 /.github
parenta98980bd5dda20bf83cd1cc39c1178cb4b490552 (diff)
downloadpygments-git-95ee5f64d6a7611772bd85aed70796d423b37a01.tar.gz
Add support for Python 3.10 (#1917)
* Add support for Python 3.10 * Drop the dot https://twitter.com/pytestdotorg/status/753767547866972160
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index ca254229..a598a0cc 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
- python-version: [3.5, 3.6, 3.7, 3.8, 3.9, pypy3]
+ python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"]
max-parallel: 4
steps:
@@ -26,7 +26,7 @@ jobs:
run: make test TEST=-v
if: runner.os == 'Linux'
- name: Test package
- run: py.test
+ run: pytest
if: runner.os == 'Windows' && ! contains(matrix['python-version'], 'pypy')
check: