From 2a975cc74f56117506598c1b52644e9afb2e3078 Mon Sep 17 00:00:00 2001 From: Thomas Li <47963215+lithomas1@users.noreply.github.com> Date: Tue, 22 Mar 2022 09:25:41 -0700 Subject: [PATCH 1/5] Switch to supported ssh url format --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 997fab9..bed26a4 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,6 @@ [submodule "pandas"] path = pandas - url = git://github.com/pandas-dev/pandas.git + url = git@github.com/pandas-dev/pandas.git [submodule "multibuild"] path = multibuild url = https://github.com/multi-build/multibuild.git From 3dd7602e7c5852bfb41d352b615da2403e87fd96 Mon Sep 17 00:00:00 2001 From: Thomas Li <47963215+lithomas1@users.noreply.github.com> Date: Tue, 22 Mar 2022 09:53:28 -0700 Subject: [PATCH 2/5] actually fix url --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index bed26a4..cbd5ecb 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,6 @@ [submodule "pandas"] path = pandas - url = git@github.com/pandas-dev/pandas.git + url = git@github.com:pandas-dev/pandas.git [submodule "multibuild"] path = multibuild url = https://github.com/multi-build/multibuild.git From 697d3901061bf8554c97f2f8b549d312ffceec4f Mon Sep 17 00:00:00 2001 From: Thomas Li <47963215+lithomas1@users.noreply.github.com> Date: Tue, 22 Mar 2022 18:27:35 -0700 Subject: [PATCH 3/5] just use https --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index cbd5ecb..c9020ab 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,6 @@ [submodule "pandas"] path = pandas - url = git@github.com:pandas-dev/pandas.git + url = https://github.com/pandas-dev/pandas.git [submodule "multibuild"] path = multibuild url = https://github.com/multi-build/multibuild.git From 6fbfdc5e5072859cd16995cf8c20f4e1c354a2c3 Mon Sep 17 00:00:00 2001 From: Thomas Li <47963215+lithomas1@users.noreply.github.com> Date: Tue, 22 Mar 2022 21:29:17 -0700 Subject: [PATCH 4/5] pin setuptools --- config.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.sh b/config.sh index 3e48b8c..f676817 100644 --- a/config.sh +++ b/config.sh @@ -28,6 +28,8 @@ function run_tests { echo $PATH echo ${MB_PYTHON_VERSION} which -a python + # Pin setuptools < 60 + pip install setuptools<60 pip list python -c 'import pandas; pandas.show_versions()' # Skip test_float_precision_options: https://github.com/pandas-dev/pandas/issues/36429 From 2b93e89c34b96a8b9dfd94b3f7455ffb5039f02d Mon Sep 17 00:00:00 2001 From: Thomas Li <47963215+lithomas1@users.noreply.github.com> Date: Wed, 23 Mar 2022 07:44:14 -0700 Subject: [PATCH 5/5] use quotes --- config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.sh b/config.sh index f676817..4e422ef 100644 --- a/config.sh +++ b/config.sh @@ -29,7 +29,7 @@ function run_tests { echo ${MB_PYTHON_VERSION} which -a python # Pin setuptools < 60 - pip install setuptools<60 + pip install "setuptools<60" pip list python -c 'import pandas; pandas.show_versions()' # Skip test_float_precision_options: https://github.com/pandas-dev/pandas/issues/36429