Skip to content

Commit ffd4433

Browse files
committed
Fix setuptools < 60 on ARM
1 parent c248f50 commit ffd4433

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ci/setup_env.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ echo
6565
mamba env remove -n pandas-dev
6666
echo "mamba env update --file=${ENV_FILE}"
6767
# See https://github.com/mamba-org/mamba/issues/633
68-
mamba create -q -n pandas-dev
68+
# TODO: GH#44980 https://github.com/pypa/setuptools/issues/2941
69+
mamba create -q -n pandas-dev 'setuptools<60'
6970
time mamba env update -n pandas-dev --file="${ENV_FILE}"
7071

7172
echo "conda list -n pandas-dev"

0 commit comments

Comments
 (0)