Skip to content

Commit 9c700d1

Browse files
authored
Workaround for editable installs with pip 19.1 (#5168)
Workaround for editable installs with pip 19.1
2 parents bf0fe1a + 19cd4d0 commit 9c700d1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tox.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ commands = pre-commit run --all-files --show-diff-on-failure
7373

7474
[testenv:docs]
7575
basepython = python3
76-
usedevelop = True
76+
# broken due to pip 19.1 (#5167)
77+
# usedevelop = True
7778
changedir = doc/en
7879
deps = -r{toxinidir}/doc/en/requirements.txt
7980

@@ -127,7 +128,8 @@ commands =
127128
[testenv:release]
128129
decription = do a release, required posarg of the version number
129130
basepython = python3.6
130-
usedevelop = True
131+
# broken due to pip 19.1 (#5167)
132+
# usedevelop = True
131133
passenv = *
132134
deps =
133135
colorama

0 commit comments

Comments
 (0)