-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
59 lines (58 loc) · 1.46 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
os: linux
language: python
python:
- 3.6
- 3.7
- 3.8
- 3.9
- 3.10
- nightly
install:
- python -m pip install --upgrade pip
- python -m pip install . .[test]
script:
- pytest tests
jobs:
include:
- name: 'Python: 3.6'
language: shell
os: windows
before_install:
- choco install python --version 3.6.8
env:
- PATH=/c/Python36:/c/Python36/Scripts:/c/tools/bin:$PATH**
- name: 'Python: 3.7'
language: shell
os: windows
before_install:
- choco install python --version 3.7.9
env:
- PATH=/c/Python37:/c/Python37/Scripts:/c/tools/bin:$PATH**
- name: 'Python: 3.8'
language: shell
os: windows
before_install:
- choco install python --version 3.8.8
env:
- PATH=/c/Python38:/c/Python38/Scripts:/c/tools/bin:$PATH**
- name: 'Python: 3.9'
language: shell
os: windows
before_install:
- choco install python --version 3.9.2
env:
- PATH=/c/Python39:/c/Python39/Scripts:/c/tools/bin:$PATH**
- name: 'Python: 3.10'
language: shell
os: windows
before_install:
- choco install python --version 3.10.2
env:
- PATH=/c/Python39:/c/Python39/Scripts:/c/tools/bin:$PATH**
- name: 'Python: nightly'
language: shell
os: windows
before_install:
- choco install python --pre
env:
- PATH=/c/Python310:/c/Python310/Scripts:/c/tools/bin:$PATH**