From 07695a290d45f7ae6b36f8ab1a37775923bf90b9 Mon Sep 17 00:00:00 2001 From: Charles Machalow Date: Thu, 15 Oct 2020 21:08:21 -0700 Subject: [PATCH] try to fix python 3.3 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d90958b69..3dced5a22 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ author="Benjamin Peterson", author_email="benjamin@python.org", url="https://github.com/benjaminp/six", - tests_require=["pytest"], + tests_require=["pytest<3.3"], py_modules=["six"], description="Python 2 and 3 compatibility utilities", long_description=six_long_description,