From 1088834d36b88dff8ba30b44d932f4ca8dec7a15 Mon Sep 17 00:00:00 2001 From: Ted Chambers Date: Sat, 23 Nov 2019 14:17:01 -0500 Subject: [PATCH 1/2] fix python versions in setup.py --- azure-devops/setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/azure-devops/setup.py b/azure-devops/setup.py index 52afd911..536cd713 100644 --- a/azure-devops/setup.py +++ b/azure-devops/setup.py @@ -27,7 +27,9 @@ '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', 'License :: OSI Approved :: MIT License', ] From 8bc336359cc8c81496e11c44112ed733f08ebee5 Mon Sep 17 00:00:00 2001 From: Ted Chambers Date: Sun, 24 Nov 2019 16:45:14 -0500 Subject: [PATCH 2/2] add python v3.8 --- .github/workflows/pythonpackage.yml | 4 ++-- azure-devops/setup.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index b344449e..75348ff6 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -7,9 +7,9 @@ jobs: runs-on: ubuntu-latest strategy: - max-parallel: 4 + max-parallel: 5 matrix: - python-version: [2.7, 3.5, 3.6, 3.7] + python-version: [2.7, 3.5, 3.6, 3.7, 3.8] steps: - uses: actions/checkout@v1 diff --git a/azure-devops/setup.py b/azure-devops/setup.py index 536cd713..668c0bf2 100644 --- a/azure-devops/setup.py +++ b/azure-devops/setup.py @@ -30,6 +30,7 @@ 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'License :: OSI Approved :: MIT License', ]