We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 578e918 commit ad6c775Copy full SHA for ad6c775
.github/workflows/32-bit-linux.yml
@@ -23,6 +23,12 @@ jobs:
23
24
- name: Run 32-bit manylinux2014 Docker Build / Tests
25
run: |
26
+ # Without this, versioneer will not be able to run git commands to determine the pandas version.
27
+ # This is because of a security update to git that blocks it from reading the config folder if
28
+ # it is not owned by the current user. We hit this since the "mounted" folder is not hit by the
29
+ # Docker container.
30
+ # xref https://github.com/pypa/manylinux/issues/1309
31
+ git config --global --add safe.directory /io/numpy
32
docker pull quay.io/pypa/manylinux2014_i686
33
docker run --platform linux/386 -v $(pwd):/pandas quay.io/pypa/manylinux2014_i686 \
34
/bin/bash -xc "cd pandas && \
0 commit comments