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 d5ad50f commit 661057dCopy full SHA for 661057d
.ci/travis-build-and-upload.sh
@@ -8,7 +8,8 @@ if [ -z "${TRAVIS_TAG}" ]; then
8
exit 0
9
fi
10
11
-if [ "${TRAVIS_PYTHON_VERSION}" == "3.6-dev" -o "${TRAVIS_PYTHON_VERSION}" == "3.5-dev" ]; then
+release_level=$(python -c 'import sys; print(sys.version_info.releaselevel)')
12
+if [ "${release_level}" != "final" ]; then
13
14
15
0 commit comments