Skip to content

Commit a376cf9

Browse files
committed
scikit-ci/circle/manylinux: Ensure tag is updated from linux to manylinux1
Fixes #8
1 parent 0b124e2 commit a376cf9

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

scikit-ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,16 @@ build:
3939
- python setup.py --hide-listing sdist
4040
- $<RUN_ENV> python setup.py --hide-listing bdist_wheel
4141

42+
circle:
43+
commands:
44+
- |
45+
# Since there are no external shared libraries to bundle into the wheels
46+
# this step will fixup the wheel switching from 'linux' to 'manylinux1' tag
47+
for whl in dist/*$(uname -p).whl; do
48+
auditwheel repair $whl -w ./dist/
49+
rm $whl
50+
done
51+
4252
test:
4353
commands:
4454
- python setup.py test

0 commit comments

Comments
 (0)