We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a6878a commit 0869ed5Copy full SHA for 0869ed5
.travis.yml
@@ -14,6 +14,10 @@ jobs:
14
os: linux
15
python: 3.8
16
17
+ - name: Linux Python 3.9
18
+ os: linux
19
+ python: 3.9
20
+
21
- name: Windows Python 3.6
22
os: windows
23
language: shell # 'language: python' is an error on Travis CI Windows
@@ -41,6 +45,15 @@ jobs:
41
45
- python --version
42
46
env: PATH=/c/Python38:/c/Python38/Scripts:$PATH
43
47
48
+ - name: Windows Python 3.9
49
+ os: windows
50
+ language: shell # 'language: python' is an error on Travis CI Windows
51
+ before_install:
52
+ - choco install python --version 3.9.0
53
+ - python -m pip install --upgrade pip
54
+ - python --version
55
+ env: PATH=/c/Python39:/c/Python39/Scripts:$PATH
56
44
57
install:
58
- |
59
python -m pip install .
0 commit comments