We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3054d95 commit b4be650Copy full SHA for b4be650
.gitlab-ci.yml
@@ -89,10 +89,10 @@ deploy_to_PyPI_cpu_version:
89
TWINE_PASSWORD: $PYPI_PASSWORD
90
script:
91
- pip install twine
92
- - find "./scatseisnet" -type f -exec sed -i "s/cupy/numpy/g" {} \; #replace cupy with numpy because no gpu on CI runner
+ - find "./scatseisnet" -type f -exec sed -i "s/cupy/numpy/g" {} \; #replace cupy with numpy for cpu-only version
93
- python setup.py sdist bdist_wheel
94
# - twine upload dist/* #upload to real repo
95
- - twine upload --repository testpypi dist/* #upload to test repo
+ - twine upload --verbose --repository testpypi dist/* #upload to test repo
96
only:
97
- tags
98
0 commit comments