Skip to content

Commit 17fde99

Browse files
committed
Makefile changed (python3 instead of 3.10)
1 parent 8687b05 commit 17fde99

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

Makefile

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,36 +2,36 @@ help:
22
cat Makefile
33

44
test:
5-
python3.10 -m pytest --benchmark-disable --showlocals
5+
python3 -m pytest --benchmark-disable --showlocals
66

77
verbose:
8-
python3.10 -m pytest --benchmark-disable --showlocals --verbose
8+
python3 -m pytest --benchmark-disable --showlocals --verbose
99

1010
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"
1212

1313
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
1515

1616
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
1818

1919
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
2121

2222
html:
2323
cd docs; make html
2424

2525
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
2929

3030
version:
3131
./version-increment
3232

3333
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/*
3737

0 commit comments

Comments
 (0)