summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2022-03-14 09:14:58 +0100
committerFlorian Bruhin <me@the-compiler.org>2022-03-14 09:14:58 +0100
commitd4304511f3ec68f7587bca0d600faa1d42bb0885 (patch)
tree0dc0c8b72c594038951e6cefab5489e81d4f6f8c
parenteb132a583036b8257d12c638a8aeb73cb8ee1441 (diff)
downloadqutebrowser-d4304511f3ec68f7587bca0d600faa1d42bb0885.tar.gz
qutebrowser-d4304511f3ec68f7587bca0d600faa1d42bb0885.zip
requirements: Do the Python 3.6 dance
-rw-r--r--misc/requirements/requirements-tests.txt6
-rw-r--r--misc/requirements/requirements-tests.txt-raw4
2 files changed, 8 insertions, 2 deletions
diff --git a/misc/requirements/requirements-tests.txt b/misc/requirements/requirements-tests.txt
index 8cd1271cc..66934702e 100644
--- a/misc/requirements/requirements-tests.txt
+++ b/misc/requirements/requirements-tests.txt
@@ -19,7 +19,7 @@ iniconfig==1.1.1
itsdangerous==2.1.1 ; python_version>="3.7"
jaraco.functools==3.5.0 ; python_version>="3.7"
# Jinja2==3.0.3
-Mako==1.2.0
+Mako==1.2.0 ; python_version>="3.7"
manhole==1.8.0
# MarkupSafe==2.1.0
more-itertools==8.12.0
@@ -32,7 +32,7 @@ py==1.11.0
py-cpuinfo==8.0.0
Pygments==2.11.2
pyparsing==3.0.7
-pytest==7.1.0
+pytest==7.1.0 ; python_version>="3.7"
pytest-bdd==4.1.0
pytest-benchmark==3.4.1
pytest-cov==3.0.0
@@ -65,3 +65,5 @@ coverage<6.3 ; python_version=="3.6.*"
pytest-mock<3.7 ; python_version=="3.6.*"
itsdangerous<2.1.0 ; python_version=="3.6.*"
tldextract<3.2.0 ; python_version=="3.6.*"
+Mako<1.2.0 ; python_version=="3.6.*"
+pytest<7.1.0 ; python_version=="3.6.*"
diff --git a/misc/requirements/requirements-tests.txt-raw b/misc/requirements/requirements-tests.txt-raw
index 0aa66e0ad..e7dc58e0c 100644
--- a/misc/requirements/requirements-tests.txt-raw
+++ b/misc/requirements/requirements-tests.txt-raw
@@ -53,3 +53,7 @@ tldextract
#@ add: itsdangerous<2.1.0 ; python_version=="3.6.*"
#@ markers: tldextract python_version>="3.7"
#@ add: tldextract<3.2.0 ; python_version=="3.6.*"
+#@ markers: Mako python_version>="3.7"
+#@ add: Mako<1.2.0 ; python_version=="3.6.*"
+#@ markers: pytest python_version>="3.7"
+#@ add: pytest<7.1.0 ; python_version=="3.6.*"