Skip to content

Commit 87b64a3

Browse files
authored
Add new Python versions support (datadriventests#105)
* Add new Python versions support * Fix 3.10 YAML recognition * Bump version
1 parent c650dd1 commit 87b64a3

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/pythonpackage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
timeout-minutes: 5
1717
strategy:
1818
matrix:
19-
python-version: [2.7, 3.6, 3.7, 3.8]
19+
python-version: [2.7, 3.6, 3.7, 3.8, 3.9, '3.10']
2020

2121
steps:
2222
- uses: actions/checkout@v2

ddt.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
else:
2121
_have_yaml = True
2222

23-
__version__ = '1.4.4'
23+
__version__ = '1.5.0'
2424

2525
# These attributes will not conflict with any real python attribute
2626
# They are added to the decorated test method and processed later

setup.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@
2222
'Programming Language :: Python :: 2',
2323
'Programming Language :: Python :: 2.7',
2424
'Programming Language :: Python :: 3',
25-
'Programming Language :: Python :: 3.5',
25+
'Programming Language :: Python :: 3.6',
26+
'Programming Language :: Python :: 3.7',
27+
'Programming Language :: Python :: 3.8',
28+
'Programming Language :: Python :: 3.9',
29+
'Programming Language :: Python :: 3.10',
2630
'Topic :: Software Development :: Testing',
2731
],
2832
setup_requires=['enum34; python_version < "3"'],

0 commit comments

Comments
 (0)