Skip to content

Commit c6563b4

Browse files
committed
Support and test Python 3.10 (#33)
1 parent 39b0159 commit c6563b4

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/CI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
matrix:
1616
strategy:
1717
matrix:
18-
python-version: ["3.6", "3.7", "3.8"]
18+
python-version: ["3.6", "3.7", "3.8", "3.10"]
1919
name: Pytest on ${{matrix.python-version}}
2020
runs-on: ubuntu-latest
2121

docs/src/release_notes.rst

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Unreleased
4444
0.7.0 (2021-11-28)
4545
------------------
4646
- Declare CSS class as public API (:issue:`3`)
47+
- Support Python 3.10 (:issue:`33`)
4748
- Add ability to link to subclass documentation (:issue:`68`)
4849
- Append a newline to error messages with source code (:issue:`70`)
4950
- Fix unpacking starred assignment (:issue:`71`)

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
'Programming Language :: Python :: 3.7',
5454
'Programming Language :: Python :: 3.8',
5555
'Programming Language :: Python :: 3.9',
56+
'Programming Language :: Python :: 3.10',
5657
'Topic :: Documentation',
5758
'Topic :: Documentation :: Sphinx',
5859
'Topic :: Software Development :: Documentation',

0 commit comments

Comments
 (0)