Skip to content

Commit

Permalink
Add new Python versions support (#105)
Browse files Browse the repository at this point in the history
* Add new Python versions support

* Fix 3.10 YAML recognition

* Bump version
  • Loading branch information
wswld authored May 24, 2022
1 parent c650dd1 commit 87b64a3
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ jobs:
timeout-minutes: 5
strategy:
matrix:
python-version: [2.7, 3.6, 3.7, 3.8]
python-version: [2.7, 3.6, 3.7, 3.8, 3.9, '3.10']

steps:
- uses: actions/checkout@v2
2 changes: 1 addition & 1 deletion ddt.py
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@
else:
_have_yaml = True

__version__ = '1.4.4'
__version__ = '1.5.0'

# These attributes will not conflict with any real python attribute
# They are added to the decorated test method and processed later
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -22,7 +22,11 @@
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Testing',
],
setup_requires=['enum34; python_version < "3"'],

0 comments on commit 87b64a3

Please sign in to comment.