summaryrefslogtreecommitdiff
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
parentc8484ac399bbeb9cedacc67456472bc544d65ebb (diff)
downloadasciidoc-py3-f03e2885d69fd6b3581cd233843deb67183c10ce.tar.gz
Mark support for Python 3.9 and 3.10 (#199)
-rw-r--r--.github/workflows/test.yml4
-rw-r--r--setup.py2
2 files changed, 4 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 }}
diff --git a/setup.py b/setup.py
index 351c7d5..9c7e808 100644
--- a/setup.py
+++ b/setup.py
@@ -94,6 +94,8 @@ setup(
'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',
'Programming Language :: Python :: Implementation :: CPython',
],
# $ setup.py publish support.