From dbdcd40b1da2b7519d293baa23681368936a3b3a Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Tue, 8 Sep 2020 12:49:45 +0200 Subject: [PATCH] Use always pytest >= 6 in python 3 --- setup.cfg | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 35723781..58a86119 100644 --- a/setup.cfg +++ b/setup.cfg @@ -51,7 +51,7 @@ megaradrp.instrument.configs.extras = [options.extras_require] test = pytest<3.7; python_version<"3" - pytest; python_version>="3" + pytest>=6; python_version>="3" pytest-remotedata docs = sphinx diff --git a/setup.py b/setup.py index cd28d381..9a0c2344 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ 'DB': ['sqlalchemy', 'numinadb'], 'test': [ 'pytest<3.7; python_version<"3"', - 'pytest; python_version>="3"', + 'pytest>=6; python_version>="3"', 'pytest-remotedata' ] },