From: Mike Bayer Date: Fri, 2 Nov 2018 20:54:21 +0000 (-0400) Subject: - block py.test 3.9.1 and 3.9.2, 3.9.3 is OK X-Git-Tag: rel_1_2_14~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ec435e15f21c1073fab60a3582025059ef5b9449;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - block py.test 3.9.1 and 3.9.2, 3.9.3 is OK Change-Id: I35ecd78b92ea420ef7909de65f82e005b92bf986 (cherry picked from commit 664290ab54b654e13a116ed4534e77663267a0e7) --- diff --git a/setup.py b/setup.py index 8e56be59d6..1a6c0d970e 100644 --- a/setup.py +++ b/setup.py @@ -139,7 +139,7 @@ def run_setup(with_cext): package_dir={'': 'lib'}, license="MIT License", cmdclass=cmdclass, - tests_require=['pytest>=2.5.2,!=3.9.1', 'mock', 'pytest-xdist'], + tests_require=['pytest>=2.5.2,!=3.9.1,!=3.9.2', 'mock', 'pytest-xdist'], long_description=readme, classifiers=[ "Development Status :: 5 - Production/Stable", diff --git a/tox.ini b/tox.ini index 4dace3934d..aa70860757 100644 --- a/tox.ini +++ b/tox.ini @@ -13,7 +13,7 @@ cov_args=--cov=sqlalchemy --cov-report term --cov-append --cov-report xml --excl usedevelop= cov: True -deps=pytest!=3.9.1 +deps=pytest!=3.9.1,!=3.9.2 pytest-xdist mock # needed only for correct profiling results