From 1ee0692f680753d2c2706c5a52e557fe958e3265 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Sat, 8 Oct 2022 15:58:04 -0400 Subject: [PATCH] Revert "ci: avoid editable installs with old pip" This reverts commit 0fe600eea319ee508bc834f95355a6e9404e00b8. --- .circleci/prepare.sh | 2 +- .cirrus.yml | 2 +- appveyor.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/prepare.sh b/.circleci/prepare.sh index b7bcf35f..991f0202 100644 --- a/.circleci/prepare.sh +++ b/.circleci/prepare.sh @@ -5,6 +5,6 @@ set -o xtrace $PYTHON --version $PYTHON -m pip --version $PYTHON -m virtualenv -p "$PYTHON" venv -venv/bin/python -m pip install ".[dev]" +venv/bin/python -m pip install -e ".[dev]" venv/bin/python -m pip freeze venv/bin/python --version diff --git a/.cirrus.yml b/.cirrus.yml index 0537775d..4ba969ea 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -1,6 +1,6 @@ run_tests: &RUN_TESTS install_cibuildwheel_script: - - python -m pip install ".[dev]" pytest-custom-exit-code + - python -m pip install -e ".[dev]" pytest-custom-exit-code run_cibuildwheel_tests_script: - python ./bin/run_tests.py diff --git a/appveyor.yml b/appveyor.yml index e2a00991..fbea6b73 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -20,7 +20,7 @@ init: } python -m pip install -U pip -install: python -m pip install ".[dev]" pytest-custom-exit-code +install: python -m pip install -e ".[dev]" pytest-custom-exit-code # the '-u' flag is required so the output is in the correct order. # See https://github.com/pypa/cibuildwheel/pull/24 for more info.