File tree 1 file changed +3
-8
lines changed
1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change 16
16
17
17
# ###############################################################################
18
18
# Downloads and tests cirq wheels from the pypi package repository.
19
- # Can verify prod, test, or pre-release versions.
20
- # --pre: pre-release cirq from prod pypi
19
+ # Can verify test or prod versions.
21
20
# --test: cirq from test pypi
22
21
# --prod: cirq from prod pypi
23
22
#
27
26
# dependencies disagree, the tests can spuriously fail.
28
27
#
29
28
# Usage:
30
- # dev_tools/packaging/verify-published-package.sh PACKAGE_VERSION --test|--prod|--pre
29
+ # dev_tools/packaging/verify-published-package.sh PACKAGE_VERSION --test|--prod
31
30
# ###############################################################################
32
31
33
32
set -e
@@ -51,12 +50,8 @@ elif [ "${PROD_SWITCH}" = "--prod" ]; then
51
50
PIP_FLAGS=' '
52
51
PYPI_REPO_NAME=" PROD"
53
52
PYPI_PROJECT_NAME=" cirq"
54
- elif [ " ${PROD_SWITCH} " = " --pre" ]; then
55
- PIP_FLAGS=' --pre'
56
- PYPI_REPO_NAME=" PROD"
57
- PYPI_PROJECT_NAME=" cirq"
58
53
else
59
- echo -e " \033[31mSecond argument must be '--prod' or '-- test' or '--pre '.\033[0m"
54
+ echo -e " \033[31mSecond argument must be '--test' or '--prod '.\033[0m"
60
55
exit 1
61
56
fi
62
57
You can’t perform that action at this time.
0 commit comments