From 2076d6a205d5b6543eb12e68c50904ce21a67dcc Mon Sep 17 00:00:00 2001 From: Vsevolod Glumov Date: Mon, 23 May 2022 19:05:34 -0700 Subject: [PATCH 1/3] Add new Python versions support --- .github/workflows/pythonpackage.yml | 2 +- setup.py | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 94e529b..abd1a48 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -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 diff --git a/setup.py b/setup.py index 1ca86ff..e2e8d88 100644 --- a/setup.py +++ b/setup.py @@ -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"'], From 2871b29d0f179681cc6488802cbc56d5cb363acb Mon Sep 17 00:00:00 2001 From: Vsevolod Glumov Date: Mon, 23 May 2022 19:08:40 -0700 Subject: [PATCH 2/3] Fix 3.10 YAML recognition --- .github/workflows/pythonpackage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index abd1a48..faf626d 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -16,7 +16,7 @@ jobs: timeout-minutes: 5 strategy: matrix: - python-version: [2.7, 3.6, 3.7, 3.8, 3.9, 3.10] + python-version: [2.7, 3.6, 3.7, 3.8, 3.9, '3.10'] steps: - uses: actions/checkout@v2 From 6b5ad9c5305447d770c8f91babb6717abfd0cb6b Mon Sep 17 00:00:00 2001 From: Vsevolod Glumov Date: Mon, 23 May 2022 19:09:59 -0700 Subject: [PATCH 3/3] Bump version --- ddt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddt.py b/ddt.py index 190517a..e8103e7 100644 --- a/ddt.py +++ b/ddt.py @@ -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