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_3_0b1~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=664290ab54b654e13a116ed4534e77663267a0e7;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - block py.test 3.9.1 and 3.9.2, 3.9.3 is OK Change-Id: I35ecd78b92ea420ef7909de65f82e005b92bf986 --- diff --git a/setup.py b/setup.py index ab285d7f47..523a5db0d1 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, python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*", classifiers=[ diff --git a/tox.ini b/tox.ini index 9cab8c1242..bcdcf72d41 100644 --- a/tox.ini +++ b/tox.ini @@ -15,7 +15,7 @@ install_command=python -m pip install {env:TOX_PIP_OPTS:} {opts} {packages} 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