summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Madden <jamadden@gmail.com>2020-10-29 07:32:45 -0500
committerGitHub <noreply@github.com>2020-10-29 07:32:45 -0500
commit6a86da3095bdcded658cff5c7ac6cf4ae61c3638 (patch)
treebbdcdcd8926798ba2b5c761ea6f71c1913c8728a
parent4793014d3c079e790f04c60146069ce1323ff969 (diff)
parent76536ceca07dda9a1c228bc145dc00ca5ad50a3e (diff)
downloadgreenlet-6a86da3095bdcded658cff5c7ac6cf4ae61c3638.tar.gz
Merge pull request #201 from hugovk/add-3.9
Test on Python 3.9 final
-rw-r--r--.travis.yml63
-rw-r--r--appveyor.yml8
2 files changed, 22 insertions, 49 deletions
diff --git a/.travis.yml b/.travis.yml
index 67b3a4c..fc5e3c1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,54 +1,19 @@
language: python
-sudo: false
+cache: pip
+dist: bionic
-matrix:
- include:
- - arch: arm64
- python: 2.7
- dist: bionic
- - arch: amd64
- python: 2.7
- dist: bionic
- - arch: ppc64le
- python: 2.7
- dist: bionic
- - arch: arm64
- python: 3.5
- dist: bionic
- - arch: amd64
- python: 3.5
- dist: bionic
- - arch: ppc64le
- python: 3.5
- dist: bionic
- - arch: arm64
- python: 3.6
- dist: bionic
- - arch: amd64
- python: 3.6
- dist: bionic
- - arch: ppc64le
- python: 3.6
- dist: bionic
- - arch: arm64
- python: 3.7
- dist: bionic
- - arch: amd64
- python: 3.7
- dist: bionic
- - arch: ppc64le
- python: 3.7
- dist: bionic
- - arch: arm64
- python: 3.8
- dist: bionic
- - arch: amd64
- python: 3.8
- dist: bionic
- - arch: ppc64le
- python: 3.8
- dist: bionic
- - python: 3.9-dev
+arch:
+ - arm64
+ - amd64
+ - ppc64le
+
+python:
+ - 2.7
+ - 3.5
+ - 3.6
+ - 3.7
+ - 3.8
+ - 3.9
install: pip install -U -e .[test]
diff --git a/appveyor.yml b/appveyor.yml
index b9fb75b..10975c9 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -47,6 +47,14 @@ environment:
PYTHON_ARCH: "64"
PYTHON_VERSION: "3.8.x"
+ - PYTHON_ROOT: "C:\\Python39"
+ PYTHON_ARCH: "32"
+ PYTHON_VERSION: "3.9.x"
+
+ - PYTHON_ROOT: "C:\\Python39-x64"
+ PYTHON_ARCH: "64"
+ PYTHON_VERSION: "3.9.x"
+
install:
- "SET PATH=%PYTHON_ROOT%;%PYTHON_ROOT%\\Scripts;%PATH%"
- "python --version"