From 007663217f16b5911d7619000d31767d4dd8d025 Mon Sep 17 00:00:00 2001 From: Paul Weidner Date: Thu, 15 Feb 2024 14:48:28 -0800 Subject: [PATCH] Pin pytest to ~=7.0 #65 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b17a649..d1152c2 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ install_requires = ["requests-oauthlib~=1.3.1", "pydantic~=1.7.3"] -tests_require = ["pytest", "black~=23.0", "setuptools~=68.0"] +tests_require = ["pytest~=7.0", "black~=23.0", "setuptools~=68.0"] with open("README.md") as fh: readme = fh.read()