diff options
author | Calum Lind <calumlind+deluge@gmail.com> | 2019-04-26 10:55:02 +0200 |
---|---|---|
committer | Calum Lind <calumlind+deluge@gmail.com> | 2019-05-03 15:53:34 +0200 |
commit | 1425fe5413ef5330bf7dfaae445303b632bb454d (patch) | |
tree | de65077972c4ff3cf1860ed2afb3a59ca0c22b89 /tox.ini | |
parent | [GTK] Remove running reactor in Gdk thread (diff) | |
download | deluge-1425fe5413ef5330bf7dfaae445303b632bb454d.tar.xz deluge-1425fe5413ef5330bf7dfaae445303b632bb454d.zip |
[Tox] Pin pip version to fix PEP517 issues
* Using pyproject.toml for black config pip version 19.1 errors out
about using editable install with pyproject.toml.
Workaround is to not use pip 19.1 in tox.
* Pin to 18.1 to avoid pip-wheel-metadata-folder creation
Ref:
- https://github.com/pypa/pip/issues/6434
- https://github.com/pypa/pip/issues/6213
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,8 +18,8 @@ addopts = -p no:warnings --basetemp=_pytest_temp [basesetup] # Minimum pip and setuptools versions to fix system and travis issues. deps = - pip>=10 - setuptools>=40 + pip >= 10, <= 18.1 + setuptools >= 40 [basetests] deps = |