ci: avoid editable installs with old pip
This commit is contained in:
@@ -5,6 +5,6 @@ set -o xtrace
|
|||||||
$PYTHON --version
|
$PYTHON --version
|
||||||
$PYTHON -m pip --version
|
$PYTHON -m pip --version
|
||||||
$PYTHON -m virtualenv -p "$PYTHON" venv
|
$PYTHON -m virtualenv -p "$PYTHON" venv
|
||||||
venv/bin/python -m pip install -e ".[dev]"
|
venv/bin/python -m pip install ".[dev]"
|
||||||
venv/bin/python -m pip freeze
|
venv/bin/python -m pip freeze
|
||||||
venv/bin/python --version
|
venv/bin/python --version
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
run_tests: &RUN_TESTS
|
run_tests: &RUN_TESTS
|
||||||
install_cibuildwheel_script:
|
install_cibuildwheel_script:
|
||||||
- python -m pip install -e ".[dev]" pytest-custom-exit-code
|
- python -m pip install ".[dev]" pytest-custom-exit-code
|
||||||
run_cibuildwheel_tests_script:
|
run_cibuildwheel_tests_script:
|
||||||
- python ./bin/run_tests.py
|
- python ./bin/run_tests.py
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -20,7 +20,7 @@ init:
|
|||||||
}
|
}
|
||||||
python -m pip install -U pip
|
python -m pip install -U pip
|
||||||
|
|
||||||
install: python -m pip install -e ".[dev]" pytest-custom-exit-code
|
install: python -m pip install ".[dev]" pytest-custom-exit-code
|
||||||
|
|
||||||
# the '-u' flag is required so the output is in the correct order.
|
# the '-u' flag is required so the output is in the correct order.
|
||||||
# See https://github.com/pypa/cibuildwheel/pull/24 for more info.
|
# See https://github.com/pypa/cibuildwheel/pull/24 for more info.
|
||||||
|
|||||||
Reference in New Issue
Block a user