@@ -120,8 +120,8 @@ install:
120
120
# twine & cryptography: see
121
121
# https://github.com/scikit-build/cmake-python-distributions/blob/4730aeee240917303f293dffc89a8d8d5a4787c4/requirements-deploy.txt
122
122
# https://github.com/pyca/cryptography/issues/6086
123
- - python3 -m pip install twine cryptography~=3.3.2
124
- - python3 -m pip install patch
123
+ - python -m pip install twine cryptography~=3.3.2
124
+ - python -m pip install patch
125
125
126
126
# Download & Apply Patches
127
127
# before_script:
@@ -132,20 +132,20 @@ install:
132
132
# - curl -sOL https://github.com/ax3l/openPMD-api/commit/43c4bf4327616e9cf7e7992d91d9b8ccd4ee3a83.patch
133
133
# - curl -sOL https://gist.githubusercontent.com/ax3l/5e83edefe4b05cf6aa2a971649285fe0/raw/023cbd69e06715e5191ece741bb1de56560a9f96/0001-Bump-setup.py.patch
134
134
# - cd ..
135
- # - python3 -m patch .patch/b622cc5ea770f866c1e373185a9e389c04bdb54c.patch
136
- # - python3 -m patch .patch/a1aac530dbc8261656cf6a07900374bc6ac6fcab.patch
137
- # - python3 -m patch .patch/43c4bf4327616e9cf7e7992d91d9b8ccd4ee3a83.patch
138
- # - python3 -m patch .patch/0001-Bump-setup.py.patch
135
+ # - python -m patch .patch/b622cc5ea770f866c1e373185a9e389c04bdb54c.patch
136
+ # - python -m patch .patch/a1aac530dbc8261656cf6a07900374bc6ac6fcab.patch
137
+ # - python -m patch .patch/43c4bf4327616e9cf7e7992d91d9b8ccd4ee3a83.patch
138
+ # - python -m patch .patch/0001-Bump-setup.py.patch
139
139
# - cd ..
140
140
141
141
script :
142
142
- cd src
143
- - travis_wait 45 python3 -m cibuildwheel --output-dir ../wheelhouse
143
+ - travis_wait 45 python -m cibuildwheel --output-dir ../wheelhouse
144
144
- cd ..
145
145
146
146
deploy :
147
147
- provider : script
148
- script : python3 -m twine upload --skip-existing wheelhouse/*
148
+ script : python -m twine upload --skip-existing wheelhouse/*
149
149
skip_cleanup : true
150
150
on :
151
151
repo : ${TRAVIS_REPO_SLUG}
0 commit comments