Skip to content

Commit

Permalink
Revert "ci: avoid editable installs with old pip"
Browse files Browse the repository at this point in the history
This reverts commit 0fe600e.
  • Loading branch information
henryiii committed Oct 8, 2022
1 parent 0fe600e commit 1ee0692
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 1ee0692

Please sign in to comment.