From f6db6cddc0d07319e75dfac181b289e9e0765ea1 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Tue, 1 Feb 2022 04:03:06 -0500 Subject: [PATCH 1/3] Disallow setuptools 60.6.0 on CI --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1ee53ffea60f..3918ef1e0939 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -85,7 +85,7 @@ commands: command: | python -m pip install --upgrade --user pip python -m pip install --upgrade --user wheel - python -m pip install --upgrade --user setuptools + python -m pip install --upgrade --user 'setuptools!=60.6.0' deps-install: parameters: From 704e489a09dabd362e5b26e0f11da4c33448c1c0 Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Tue, 1 Feb 2022 04:28:54 -0500 Subject: [PATCH 2/3] Disallow pip 22.0 on AppVeyor I think we're hitting https://github.com/pypa/pip/issues/10848 --- .appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index c637dae4d869..03c82639048f 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -55,7 +55,7 @@ install: - conda config --prepend channels conda-forge # For building, use a new environment - - conda create -q -n test-environment python=%PYTHON_VERSION% tk + - conda create -q -n test-environment python=%PYTHON_VERSION% tk "pip<22.0" - activate test-environment # pull pywin32 from conda because on py38 there is something wrong with finding # the dlls when insalled from pip From 4f6de6c2e8a9e0aabf213c4ed84d41032b184c4e Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Tue, 1 Feb 2022 05:08:57 -0500 Subject: [PATCH 3/3] Fix pyzmq constraint on AppVeyor --- .appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 03c82639048f..5d9dce4bcaa0 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -18,7 +18,7 @@ environment: PYTHONIOENCODING: UTF-8 PYTEST_ARGS: -raR --numprocesses=auto --timeout=300 --durations=25 --cov-report= --cov=lib --log-level=DEBUG - PINNEDVERS: "pyzmq!=21.0.0 pyzmq!=22.0.0" + PINNEDVERS: "pyzmq!=21.0.0,!=22.0.0" matrix: # In theory we could use a single CONDA_INSTALL_LOCN because we construct