Skip to content

Commit 8da18a8

Browse files
committed
remove the editable install
1 parent 2170b6b commit 8da18a8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
- v2-dependencies-
2929

3030
- run:
31-
name: install dependencies and editable version
31+
name: install dependencies and version
3232
command: |
3333
python3 -m venv venv
3434
. venv/bin/activate
3535
pip install --upgrade pip setuptools wheel
3636
pip install -r requirements.txt
3737
pip install -r requirements-dev.txt
38-
pip install -e .
38+
pip install .
3939
4040
- run:
4141
name: check types

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ install:
1010
- pip install --upgrade -r requirements-dev.txt
1111
- pip install --upgrade -r requirements.txt
1212
- pip freeze
13-
- pip install -e .
13+
- pip install .
1414
script:
1515
- pytest -v --maxfail=2 bookstore/tests
1616
after_success:

0 commit comments

Comments
 (0)