tox.ini: add download=true to install latest pip inside tox virtualenv

This commit is contained in:
Cosimo Lupo 2020-09-28 19:55:12 +01:00
parent b73fa096a8
commit 933e394105
No known key found for this signature in database
GPG Key ID: 179A8F0895A02F4F

View File

@ -6,6 +6,11 @@ skip_missing_interpreters=true
[testenv] [testenv]
setenv = setenv =
cy: FONTTOOLS_WITH_CYTHON=1 cy: FONTTOOLS_WITH_CYTHON=1
# use 'download = true' to have tox install the latest pip inside the virtualenv.
# We need this to be able to install skia-pathops on Linux, which uses a
# relatively recent 'manylinux2014' platform tag.
# https://github.com/tox-dev/tox/issues/791#issuecomment-518713438
download = true
deps = deps =
cov: coverage>=4.3 cov: coverage>=4.3
pytest pytest