Skip to content

Commit 7ee2ded

Browse files
committed
Try dropping editable installs
see: pypa/pip#10573
1 parent 42a2c57 commit 7ee2ded

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ jobs:
2424
shell: "bash -l {0}"
2525
run: |
2626
conda activate minimal
27-
python -m pip install -e .
27+
python -m pip install .
2828
pytest -svx

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
python -m pip install --upgrade pip
5858
python -m pip install -U pip setuptools wheel codecov line_profiler
5959
python -m pip install -rrequirements_dev_minimal.txt numpy${{ matrix.numpy_version}} -rrequirements_dev_optional.txt pymongo redis
60-
python -m pip install -e .
60+
python -m pip install .
6161
python -m pip freeze
6262
- name: Tests
6363
shell: "bash -l {0}"

.github/workflows/windows-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
python -m pip install --upgrade pip
4040
python -m pip install -U pip setuptools wheel
4141
python -m pip install -r requirements_dev_numpy.txt -r requirements_dev_minimal.txt -r requirements_dev_optional.txt
42-
python -m pip install -e .
42+
python -m pip install .
4343
python -m pip freeze
4444
npm install -g azurite
4545
- name: Run Tests

0 commit comments

Comments
 (0)