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 ef7040d commit 695a520Copy full SHA for 695a520
.ci/travis-release.sh
@@ -27,8 +27,11 @@ P="${PYMODULE}-${PACKAGE_VERSION}"
27
expected_wheels=()
28
29
for pyver in ${RELEASE_PYTHON_VERSIONS}; do
30
- pyver="${pyver//./}"
31
- abitag="cp${pyver}-cp${pyver}m"
+ abitag=$(python -c \
+ "print('cp{maj}{min}-cp{maj}{min}{s}'.format( \
32
+ maj='${pyver}'.split('.')[0], \
33
+ min='${pyver}'.split('.')[1],
34
+ s='m' if tuple('${pyver}'.split('.')) < ('3', '8') else ''))")
35
for plat in "${release_platforms[@]}"; do
36
expected_wheels+=("${P}-${abitag}-${plat}.whl")
37
done
0 commit comments