kou commented on PR #35024:
URL: https://github.com/apache/arrow/pull/35024#issuecomment-1502953500
Oh...
Does this work? (I can try this tomorrow. If you can't wait, feel free to
try.)
```diff
diff --git a/ci/conda_env_python.txt b/ci/conda_env_python.txt
index 254acbc684..04f985c94b 100644
--- a/ci/conda_env_python.txt
+++ b/ci/conda_env_python.txt
@@ -21,7 +21,6 @@ cffi
cython
cloudpickle
fsspec
-gdb
hypothesis
numpy>=1.16.6
pytest
diff --git a/ci/conda_env_python_unix.txt b/ci/conda_env_python_unix.txt
new file mode 100644
index 0000000000..fab6699797
--- /dev/null
+++ b/ci/conda_env_python_unix.txt
@@ -0,0 +1,18 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+gdb
diff --git a/ci/docker/conda-python.dockerfile
b/ci/docker/conda-python.dockerfile
index 6a6ae73585..86d292bb67 100644
--- a/ci/docker/conda-python.dockerfile
+++ b/ci/docker/conda-python.dockerfile
@@ -22,10 +22,12 @@ FROM ${repo}:${arch}-conda-cpp
# install python specific packages
ARG python=3.8
COPY ci/conda_env_python.txt \
+ ci/conda_env_python_unix.txt \
ci/conda_env_sphinx.txt \
/arrow/ci/
RUN mamba install -q -y \
--file arrow/ci/conda_env_python.txt \
+ --file arrow/ci/conda_env_python_unix.txt \
--file arrow/ci/conda_env_sphinx.txt \
$([ "$python" == "3.7" ] && echo "pickle5") \
python=${python} \
```
--
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]