pitrou commented on code in PR #14033:
URL: https://github.com/apache/arrow/pull/14033#discussion_r1004145321
##########
dev/archery/archery/docker/cli.py:
##########
@@ -216,7 +216,8 @@ def docker_run(obj, image, command, *, env, user,
force_pull, force_build,
PYTHON=3.8 archery docker run conda-python
# disable the cache only for the leaf image
- PANDAS=master archery docker run --no-leaf-cache conda-python-pandas
+ PANDAS=upstream_devel archery docker run --no-leaf-cache
+ conda-python-pandas
Review Comment:
Either put this on a single line or add escape the newline:
```suggestion
PANDAS=upstream_devel archery docker run --no-leaf-cache
conda-python-pandas
```
```suggestion
PANDAS=upstream_devel archery docker run --no-leaf-cache \
conda-python-pandas
```
(with a shorter name than "upstream_devel" we probably wouldn't have this
problem ;-))
##########
dev/archery/archery/docker/cli.py:
##########
@@ -216,7 +216,8 @@ def docker_run(obj, image, command, *, env, user,
force_pull, force_build,
PYTHON=3.8 archery docker run conda-python
# disable the cache only for the leaf image
- PANDAS=master archery docker run --no-leaf-cache conda-python-pandas
+ PANDAS=upstream_devel archery docker run --no-leaf-cache
+ conda-python-pandas
Review Comment:
Either put this on a single line or escape the newline:
```suggestion
PANDAS=upstream_devel archery docker run --no-leaf-cache
conda-python-pandas
```
```suggestion
PANDAS=upstream_devel archery docker run --no-leaf-cache \
conda-python-pandas
```
(with a shorter name than "upstream_devel" we probably wouldn't have this
problem ;-))
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]