Skip to content

Commit

Permalink
Add testing and document support for Python 3.10
Browse files Browse the repository at this point in the history
Python 3.10 was released Oct 4, 2021.

https://www.python.org/downloads/release/python-3100/
  • Loading branch information
jdufresne committed Jun 25, 2022
1 parent 718b8d1 commit 2f0d064
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/codespell-private.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
- 3.7
- 3.8
- 3.9
- 3.10
name: Python ${{ matrix.python-version }} test
steps:
- uses: actions/checkout@v3
Expand Down
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,14 @@
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'],
'Operating System :: MacOS',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'],
platforms='any',
python_requires='>=3.6',
packages=[
Expand Down

0 comments on commit 2f0d064

Please sign in to comment.