Commit 9bd36c6 1 parent 9ce5655 commit 9bd36c6 Copy full SHA for 9bd36c6
File tree 5 files changed +25
-25
lines changed
5 files changed +25
-25
lines changed Original file line number Diff line number Diff line change @@ -29,17 +29,17 @@ jobs:
29
29
- name : Python info
30
30
shell : bash -l {0}
31
31
run : |
32
- which python3
33
- python3 --version
32
+ which python
33
+ python --version
34
34
- name : Upgrade pip and install dependencies
35
35
shell : bash -l {0}
36
36
run : |
37
- python3 -m pip install --upgrade pip setuptools
38
- python3 -m pip install .[dev,publishing]
37
+ python -m pip install --upgrade pip setuptools
38
+ python -m pip install .[dev,publishing]
39
39
- name : Run unit tests
40
40
run : pytest -v
41
41
- name : Verify that we can build the package
42
- run : python3 setup.py sdist bdist_wheel
42
+ run : python setup.py sdist bdist_wheel
43
43
- name : Build documentation
44
44
run : make coverage doctest html
45
45
working-directory : docs
Original file line number Diff line number Diff line change @@ -26,13 +26,13 @@ jobs:
26
26
- name : Python info
27
27
shell : bash -l {0}
28
28
run : |
29
- which python3
30
- python3 --version
29
+ which python
30
+ python --version
31
31
- name : Upgrade pip and install dependencies
32
32
shell : bash -l {0}
33
33
run : |
34
- python3 -m pip install --upgrade pip setuptools
35
- python3 -m pip install .[dev,publishing]
34
+ python -m pip install --upgrade pip setuptools
35
+ python -m pip install .[dev,publishing]
36
36
- name : Check style against standards using prospector
37
37
run : prospector
38
38
- name : Check import order
Original file line number Diff line number Diff line change @@ -28,12 +28,12 @@ jobs:
28
28
- name : Python info
29
29
shell : bash -l {0}
30
30
run : |
31
- which python3
32
- python3 --version
31
+ which python
32
+ python --version
33
33
- name : Upgrade pip and install dependencies
34
34
shell : bash -l {0}
35
35
run : |
36
- python3 -m pip install --upgrade pip setuptools
37
- python3 -m pip install .[dev,publishing]
36
+ python -m pip install --upgrade pip setuptools
37
+ python -m pip install .[dev,publishing]
38
38
- name : Run tutorial notebooks
39
39
run : pytest --nbmake tutorials
Original file line number Diff line number Diff line change @@ -22,13 +22,13 @@ jobs:
22
22
- name : Python info
23
23
shell : bash -l {0}
24
24
run : |
25
- which python3
26
- python3 --version
25
+ which python
26
+ python --version
27
27
- name : Upgrade pip and install dependencies
28
28
shell : bash -l {0}
29
29
run : |
30
- python3 -m pip install --upgrade pip setuptools
31
- python3 -m pip install .[dev,publishing]
30
+ python -m pip install --upgrade pip setuptools
31
+ python -m pip install .[dev,publishing]
32
32
33
33
- name : Build wheel
34
34
run : python setup.py bdist_wheel
@@ -52,13 +52,13 @@ jobs:
52
52
- name : Python info
53
53
shell : bash -l {0}
54
54
run : |
55
- which python3
56
- python3 --version
55
+ which python
56
+ python --version
57
57
- name : Upgrade pip and install dependencies
58
58
shell : bash -l {0}
59
59
run : |
60
- python3 -m pip install --upgrade pip setuptools
61
- python3 -m pip install .[dev,publishing]
60
+ python -m pip install --upgrade pip setuptools
61
+ python -m pip install .[dev,publishing]
62
62
63
63
- name : Build sdist
64
64
run : python setup.py sdist
Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ jobs:
27
27
- name : Python info
28
28
shell : bash -l {0}
29
29
run : |
30
- which python3
31
- python3 --version
30
+ which python
31
+ python --version
32
32
- name : Upgrade pip and install dependencies
33
33
shell : bash -l {0}
34
34
run : |
35
- python3 -m pip install --upgrade pip setuptools
36
- python3 -m pip install .[dev,publishing]
35
+ python -m pip install --upgrade pip setuptools
36
+ python -m pip install .[dev,publishing]
37
37
- name : Check style against standards using prospector
38
38
run : prospector --zero-exit --output-format grouped --output-format pylint:pylint-report.txt
39
39
- name : Run unit tests with coverage
You can’t perform that action at this time.
0 commit comments