|
2 | 2 | cat Makefile |
3 | 3 |
|
4 | 4 | test: |
5 | | - python3.10 -m pytest --benchmark-disable --showlocals |
| 5 | + python3 -m pytest --benchmark-disable --showlocals |
6 | 6 |
|
7 | 7 | verbose: |
8 | | - python3.10 -m pytest --benchmark-disable --showlocals --verbose |
| 8 | + python3 -m pytest --benchmark-disable --showlocals --verbose |
9 | 9 |
|
10 | 10 | xfails: |
11 | | - python3.10 -m pytest --benchmark-disable --verbose | egrep --color=always "xfail|XFAIL|xpass|XPASS" |
| 11 | + python3 -m pytest --benchmark-disable --verbose | egrep --color=always "xfail|XFAIL|xpass|XPASS" |
12 | 12 |
|
13 | 13 | cover: |
14 | | - python3.10 -m pytest --benchmark-disable --cov construct --cov-report html --cov-report term --verbose |
| 14 | + python3 -m pytest --benchmark-disable --cov construct --cov-report html --cov-report term --verbose |
15 | 15 |
|
16 | 16 | bench: |
17 | | - python3.10 -m pytest --benchmark-enable --benchmark-columns=min,stddev --benchmark-sort=name --benchmark-compare |
| 17 | + python3 -m pytest --benchmark-enable --benchmark-columns=min,stddev --benchmark-sort=name --benchmark-compare |
18 | 18 |
|
19 | 19 | benchsave: |
20 | | - python3.10 -m pytest --benchmark-enable --benchmark-columns=min,stddev --benchmark-sort=name --benchmark-compare --benchmark-autosave |
| 20 | + python3 -m pytest --benchmark-enable --benchmark-columns=min,stddev --benchmark-sort=name --benchmark-compare --benchmark-autosave |
21 | 21 |
|
22 | 22 | html: |
23 | 23 | cd docs; make html |
24 | 24 |
|
25 | 25 | installdeps: |
26 | | - apt-get install python3.10 python3-pip python3-sphinx --upgrade |
27 | | - python3.10 -m pip install pytest pytest-benchmark pytest-cov twine wheel --upgrade |
28 | | - python3.10 -m pip install numpy arrow ruamel.yaml cloudpickle lz4 cryptography --upgrade |
| 26 | + apt-get install python3 python3-pip python3-sphinx --upgrade |
| 27 | + python3 -m pip install pytest pytest-benchmark pytest-cov twine wheel --upgrade |
| 28 | + python3 -m pip install numpy arrow ruamel.yaml cloudpickle lz4 cryptography --upgrade |
29 | 29 |
|
30 | 30 | version: |
31 | 31 | ./version-increment |
32 | 32 |
|
33 | 33 | upload: |
34 | | - python3.10 ./setup.py sdist bdist_wheel |
35 | | - python3.10 -m twine check dist/* |
36 | | - python3.10 -m twine upload dist/* |
| 34 | + python3 ./setup.py sdist bdist_wheel |
| 35 | + python3 -m twine check dist/* |
| 36 | + python3 -m twine upload dist/* |
37 | 37 |
|
0 commit comments