summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorBert JW Regeer <bertjw@regeer.org>2020-02-02 16:38:23 -0800
committerBert JW Regeer <bertjw@regeer.org>2020-02-02 16:40:42 -0800
commit202dd0957a0afc7b159096e7ddfc8b4dfca061d7 (patch)
tree79f1be6751b25d84abccaa40e072b75e9856946f /.github/workflows
parent8af9adb8e9078bfdbc3adf9153b04e2d4471222d (diff)
downloadwaitress-drop-py34.tar.gz
Drop Python 3.4drop-py34
This is necessary due to needing coverage>=5.0, which is no longer available on Python 3.4. Python 3.4 is also now past end of life. This continued to work by chance due to Travis having nosetest installed in the Python global installation, and thus the failure from tox to install coverage>=5.0 did not cause errors on Travis. Testing locally I still had an old version of coverage installed, and that version had not yet dropped Python 3.4.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci-linux.yml1
-rw-r--r--.github/workflows/ci-macos.yml1
-rw-r--r--.github/workflows/ci-windows.yml1
3 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml
index a1c60ed..fd64233 100644
--- a/.github/workflows/ci-linux.yml
+++ b/.github/workflows/ci-linux.yml
@@ -12,6 +12,7 @@ jobs:
{'py': '3.5', 'env': 'py35'},
{'py': '3.6', 'env': 'py36'},
{'py': '3.7', 'env': 'py37'},
+ {'py': '3.8', 'env': 'py38'},
{'py': 'pypy2', 'env': 'pypy'},
{'py': 'pypy3', 'env': 'pypy3'}
]
diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml
index d974654..c8b6c63 100644
--- a/.github/workflows/ci-macos.yml
+++ b/.github/workflows/ci-macos.yml
@@ -12,6 +12,7 @@ jobs:
{'py': '3.5', 'env': 'py35'},
{'py': '3.6', 'env': 'py36'},
{'py': '3.7', 'env': 'py37'},
+ {'py': '3.8', 'env': 'py38'},
]
architecture: ['x64']
name: "Python: ${{ matrix.tox.py }}"
diff --git a/.github/workflows/ci-windows.yml b/.github/workflows/ci-windows.yml
index e2ee5f6..cf0dd2b 100644
--- a/.github/workflows/ci-windows.yml
+++ b/.github/workflows/ci-windows.yml
@@ -12,6 +12,7 @@ jobs:
{'py': '3.5', 'env': 'py35'},
{'py': '3.6', 'env': 'py36'},
{'py': '3.7', 'env': 'py37'},
+ {'py': '3.8', 'env': 'py38'},
]
architecture: ['x86', 'x64']
name: "Python: ${{ matrix.tox.py }} (${{ matrix.architecture }})"