From 1a6878ad1f20aea6b561e356822520c26dd79e6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Hanu=C5=A1?= Date: Tue, 2 Feb 2021 09:49:56 +0100 Subject: [PATCH 1/2] Add support for Python 3.8 --- .travis.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2c3c9960..b89259de 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,11 @@ jobs: - name: Linux Python 3.7 os: linux python: 3.7 - + + - name: Linux Python 3.8 + os: linux + python: 3.8 + - name: Windows Python 3.6 os: windows language: shell # 'language: python' is an error on Travis CI Windows @@ -28,6 +32,15 @@ jobs: - python --version env: PATH=/c/Python37:/c/Python37/Scripts:$PATH + - name: Windows Python 3.8 + os: windows + language: shell # 'language: python' is an error on Travis CI Windows + before_install: + - choco install python --version 3.8.0 + - python -m pip install --upgrade pip + - python --version + env: PATH=/c/Python38:/c/Python38/Scripts:$PATH + install: - | python -m pip install . From 0869ed59b1d281729d7ede84b36897f76e9dd7d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Hanu=C5=A1?= Date: Tue, 2 Feb 2021 09:50:48 +0100 Subject: [PATCH 2/2] Add support for Python 3.9 --- .travis.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.travis.yml b/.travis.yml index b89259de..76f7d7d4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,10 @@ jobs: os: linux python: 3.8 + - name: Linux Python 3.9 + os: linux + python: 3.9 + - name: Windows Python 3.6 os: windows language: shell # 'language: python' is an error on Travis CI Windows @@ -41,6 +45,15 @@ jobs: - python --version env: PATH=/c/Python38:/c/Python38/Scripts:$PATH + - name: Windows Python 3.9 + os: windows + language: shell # 'language: python' is an error on Travis CI Windows + before_install: + - choco install python --version 3.9.0 + - python -m pip install --upgrade pip + - python --version + env: PATH=/c/Python39:/c/Python39/Scripts:$PATH + install: - | python -m pip install .