Skip to content

Commit 087e7b5

Browse files
authored
Merge pull request #140 from matthewfeickert/fix/correct-wheel-vs-project-name
FIX: Keep the filenames of verified wheels unchanged
2 parents d65af28 + f2bcff3 commit 087e7b5

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
88

99
[project]
1010
name = "scipy-openblas64"
11-
version = "0.3.26.0.4"
11+
version = "0.3.26.0.5"
1212
requires-python = ">=3.7"
1313
description = "Provides OpenBLAS for python packaging"
1414
readme = "README.md"

tools/upload_to_anaconda_staging.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,12 @@ upload_wheels() {
1313
VERSION=$(git describe --tags --abbrev=8)
1414
popd
1515

16-
# if only rename was built-in to bash...
17-
for f in dist/*.whl; do cp $f "${f/scipy_openblas/scipy-openblas}"; done
1816
if [ "$OPENBLAS_LIBS_STAGING_UPLOAD_TOKEN" != "" ]; then
1917
echo "Uploading OpenBLAS $VERSION to anaconda.org/multibuild-wheels-staging"
2018

2119
anaconda -t $OPENBLAS_LIBS_STAGING_UPLOAD_TOKEN upload \
2220
--no-progress --force -u multibuild-wheels-staging \
23-
dist/scipy-openblas*.whl
21+
dist/scipy_openblas*.whl
2422

2523
fi
2624
if [ "$ANACONDA_SCIENTIFIC_PYTHON_UPLOAD" == "" ]; then
@@ -30,7 +28,7 @@ upload_wheels() {
3028

3129
anaconda -t $ANACONDA_SCIENTIFIC_PYTHON_UPLOAD upload \
3230
--no-progress --force -u scientific-python-nightly-wheels \
33-
dist/scipy-openblas*.whl
31+
dist/scipy_openblas*.whl
3432

3533
tarballs=$(ls -d builds/openblas*.zip libs/openblas*.tar.gz 2>/dev/null)
3634
anaconda -t $ANACONDA_SCIENTIFIC_PYTHON_UPLOAD upload \

0 commit comments

Comments
 (0)