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 7fcbfed commit ef7040dCopy full SHA for ef7040d
.ci/travis-build-wheels.sh
@@ -39,9 +39,11 @@ _upload_wheels() {
39
if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
40
for pyver in ${RELEASE_PYTHON_VERSIONS}; do
41
ML_PYTHON_VERSION=$(python3 -c \
42
- "print('cp{maj}{min}-cp{maj}{min}m'.format( \
+ "print('cp{maj}{min}-cp{maj}{min}{s}'.format( \
43
maj='${pyver}'.split('.')[0], \
44
- min='${pyver}'.split('.')[1]))")
+ min='${pyver}'.split('.')[1],
45
+ s='m' if tuple('${pyver}'.split('.')) < ('3', '8') \
46
+ else ''))")
47
48
for arch in x86_64; do
49
ML_IMAGE="quay.io/pypa/manylinux2010_${arch}"
0 commit comments