Skip to content
This repository was archived by the owner on Jan 6, 2023. It is now read-only.

Commit bbcec2f

Browse files
Add support for Python 3.10 (#72)
* Add support for Python 3.10 * Remove duplicate YAML file * Fix for 3.10 to be parsed correctly
1 parent 6cb656e commit bbcec2f

File tree

3 files changed

+5
-47
lines changed

3 files changed

+5
-47
lines changed

.github/workflows/main.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
strategy:
2020
matrix:
2121
python-version:
22-
- 2.7
23-
- 3.7
24-
- 3.8
25-
- 3.9
22+
- "2.7"
23+
- "3.7"
24+
- "3.9"
25+
- "3.10"
2626
name: Dev ${{ matrix.python-version }}
2727

2828
steps:

main.yml

-43
This file was deleted.

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ def finalize_options(self):
118118
'Programming Language :: Python :: 3.7',
119119
'Programming Language :: Python :: 3.8',
120120
'Programming Language :: Python :: 3.9',
121+
'Programming Language :: Python :: 3.10',
121122
'Programming Language :: C++',
122123
'Programming Language :: Cython',
123124
'Development Status :: 5 - Production/Stable',

0 commit comments

Comments
 (0)