Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

get antlr from the cheeseshop #1325

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions 3rdparty/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
ansicolors==1.0.2

antlr_python_runtime==3.1.3
--allow-external antlr-python-runtime
--allow-unverified antlr-python-runtime
--find-links https://pantsbuild.github.io/cheeseshop/third_party/python/index.html

coverage>=3.7,<3.8
docutils>=0.12,<0.13
Expand Down
6 changes: 3 additions & 3 deletions build-support/bin/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ PKG_PANTS_TESTINFRA=(
)
function pkg_pants_testinfra_install_test() {
PIP_ARGS="$@"
pip install ${PIP_ARGS} pantsbuild.pants.testinfra==$(local_version) \
--allow-external antlr-python-runtime --allow-unverified antlr-python-runtime && \
pip install ${PIP_ARGS} pantsbuild.pants.testinfra==$(local_version) && \
python -c "import pants_test"
}

Expand Down Expand Up @@ -141,7 +140,8 @@ function install_and_test_packages() {
--quiet

# Needed for now by pantsbuild.pants which any install requires.
--allow-external antlr-python-runtime --allow-unverified antlr-python-runtime
--find-links https://pantsbuild.github.io/cheeseshop/third_party/python/dist/index.html
--find-links https://pantsbuild.github.io/cheeseshop/third_party/python/index.html
)

for PACKAGE in "${RELEASE_PACKAGES[@]}"
Expand Down