From ff749a7a0a7b9a86b3745cad393effcf594db5f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Philip=20G=C3=B6pfert?= Date: Wed, 6 Nov 2019 10:35:16 +0100 Subject: [PATCH] Specify version of requirement In `README.rst`, a version of `six` of at least `1.10.0` is specified. This was missing from the requirements, potentially leading to broken installations. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 939e8e50..ceb5afad 100644 --- a/setup.py +++ b/setup.py @@ -143,7 +143,7 @@ setup( long_description=LONG_DESCRIPTION, platforms=["any"], classifiers=CLASSIFIERS, - install_requires=["pymongo>=3.4", "six"], + install_requires=["pymongo>=3.4", "six>=1.10.0"], cmdclass={"test": PyTest}, **extra_opts )