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 a40a5e5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/codespell-private.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ jobs:
strategy:
matrix:
python-version:
- 3.6
- 3.7
- 3.8
- 3.9
- "3.6"
- "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 a40a5e5

Please sign in to comment.