We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b124e2 commit a376cf9Copy full SHA for a376cf9
scikit-ci.yml
@@ -39,6 +39,16 @@ build:
39
- python setup.py --hide-listing sdist
40
- $<RUN_ENV> python setup.py --hide-listing bdist_wheel
41
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
+
52
test:
53
commands:
54
- python setup.py test
0 commit comments