Skip to content

Commit 87f2dc4

Browse files
authored
Merge pull request nmslib#283 from marekhanus/feature/travis
Feature/travis
2 parents b6d0b8d + 0869ed5 commit 87f2dc4

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

.travis.yml

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,15 @@ jobs:
99
- name: Linux Python 3.7
1010
os: linux
1111
python: 3.7
12-
12+
13+
- name: Linux Python 3.8
14+
os: linux
15+
python: 3.8
16+
17+
- name: Linux Python 3.9
18+
os: linux
19+
python: 3.9
20+
1321
- name: Windows Python 3.6
1422
os: windows
1523
language: shell # 'language: python' is an error on Travis CI Windows
@@ -28,6 +36,24 @@ jobs:
2836
- python --version
2937
env: PATH=/c/Python37:/c/Python37/Scripts:$PATH
3038

39+
- name: Windows Python 3.8
40+
os: windows
41+
language: shell # 'language: python' is an error on Travis CI Windows
42+
before_install:
43+
- choco install python --version 3.8.0
44+
- python -m pip install --upgrade pip
45+
- python --version
46+
env: PATH=/c/Python38:/c/Python38/Scripts:$PATH
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+
3157
install:
3258
- |
3359
python -m pip install .

0 commit comments

Comments
 (0)