summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMatthew Peveler <matt.peveler@gmail.com>2021-10-16 08:40:59 -1000
committerGitHub <noreply@github.com>2021-10-16 08:40:59 -1000
commitf03e2885d69fd6b3581cd233843deb67183c10ce (patch)
tree832f1276dcbf2b6943a4991e852b2bfda27cb92c /.github
parentc8484ac399bbeb9cedacc67456472bc544d65ebb (diff)
downloadasciidoc-py3-f03e2885d69fd6b3581cd233843deb67183c10ce.tar.gz
Mark support for Python 3.9 and 3.10 (#199)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index acc12e8..aa0dfd2 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -29,13 +29,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- python-version: [3.5, 3.6, 3.7, 3.8, 3.9, 3.10-dev]
+ python-version: [3.5, 3.6, 3.7, 3.8, 3.9, '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v2
if: "!endsWith(matrix.python-version, '-dev')"
with:
python-version: ${{ matrix.python-version }}