Skip to content

Commit

Permalink
FIX: py.requirements/ci.tox.txt
Browse files Browse the repository at this point in the history
* Sync from "testing.txt" (that already contains the fix)
* Fix needed for newer Python3 versions (pytest, pytest-html, ...)
  • Loading branch information
jenisys committed Nov 8, 2022
1 parent 46ad983 commit 1e40cb9
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions py.requirements/ci.tox.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
# ============================================================================
# BEHAVE: PYTHON PACKAGE REQUIREMENTS: ci.tox.txt
# ============================================================================
# BASED ON: testing.txt

pytest < 5.0; python_version < '3.0' # pytest >= 4.2
pytest >= 5.0; python_version >= '3.0'

pytest-html >= 1.19.0,<2.0
mock >= 2.0
pytest-html >= 1.19.0,<2.0; python_version < '3.0'
pytest-html >= 2.0; python_version >= '3.0'

mock < 4.0; python_version < '3.6'
mock >= 4.0; python_version >= '3.6'
PyHamcrest >= 2.0.2; python_version >= '3.0'
PyHamcrest < 2.0; python_version < '3.0'

# -- HINT: path.py => path (python-install-package was renamed for python3)
path.py >= 11.5.0; python_version < '3.5'
path >= 13.1.0; python_version >= '3.5'
path.py >=11.5.0,<13.0; python_version < '3.5'
path >= 13.1.0; python_version >= '3.5'

jsonschema

0 comments on commit 1e40cb9

Please sign in to comment.