Bump tox minversion to 3.9 due to inline comments

Current minimal required version of tox (3.4.0),
as per tox.ini, is not compatible with inline comments.

Support for inline comments in deps was added in 3.9 according to:
- https://tox.readthedocs.io/en/latest/config.html#conf-deps
- https://tox.readthedocs.io/en/latest/changelog.html#v3-9-0-2019-04-17

E.g. there are inline comments at deps lines:

  [testenv:molecule]
  deps =
      ansible
      ansi2html  # GPL (soft-dependency of pytest-html)

which then fails like:

  ERROR: Invalid requirement: 'ansi2html  # GPL (soft-dependency of pytest-html)'

Change-Id: Ic1a3457a8164097b73dd906744c49171aa4cb833
This commit is contained in:
Pavel Sedlák 2020-02-06 10:55:00 +01:00
parent de9f94e2d5
commit 90772598ec
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
[tox]
minversion = 3.4.0
minversion = 3.9.0
envlist = linters
skipdist = True