File tree Expand file tree Collapse file tree 3 files changed +6
-15
lines changed
Expand file tree Collapse file tree 3 files changed +6
-15
lines changed Original file line number Diff line number Diff line change 2323
2424 - name : Run 32-bit manylinux2014 Docker Build / Tests
2525 run : |
26+ # Without this (line 34), versioneer will not be able 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
2631 docker pull quay.io/pypa/manylinux2014_i686
2732 docker run --platform linux/386 -v $(pwd):/pandas quay.io/pypa/manylinux2014_i686 \
2833 /bin/bash -xc "cd pandas && \
34+ git config --global --add safe.directory /pandas && \
2935 /opt/python/cp38-cp38/bin/python -m venv ~/virtualenvs/pandas-dev && \
3036 . ~/virtualenvs/pandas-dev/bin/activate && \
3137 python -m pip install --no-deps -U pip wheel 'setuptools<60.0.0' && \
Original file line number Diff line number Diff line change 55import numpy as np
66import pytest
77
8- from pandas .compat import (
9- IS64 ,
10- is_ci_environment ,
11- )
12-
138import pandas as pd
149from pandas import Series
1510import pandas ._testing as tm
@@ -162,9 +157,6 @@ def test_standardize_mapping():
162157 assert isinstance (com .standardize_mapping (dd ), partial )
163158
164159
165- @pytest .mark .xfail (
166- is_ci_environment () and not IS64 , reason = "Failing on 32 bit Python CI job"
167- )
168160def test_git_version ():
169161 # GH 21295
170162 git_version = pd .__git_version__
Original file line number Diff line number Diff line change 44
55import pytest
66
7- from pandas .compat import (
8- IS64 ,
9- is_ci_environment ,
10- )
117from pandas .util ._print_versions import (
128 _get_dependency_info ,
139 _get_sys_info ,
@@ -72,9 +68,6 @@ def test_show_versions_console_json(capsys):
7268 assert result == expected
7369
7470
75- @pytest .mark .xfail (
76- is_ci_environment () and not IS64 , reason = "Failing on 32 bit Python CI job"
77- )
7871def test_show_versions_console (capsys ):
7972 # gh-32041
8073 # gh-32041
You can’t perform that action at this time.
0 commit comments