From 426a47afef612e5e0d54a917b58f37ba09ecacf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20L=C3=B3pez=20Calvo?= Date: Wed, 5 Jun 2019 11:45:09 +0200 Subject: [PATCH 1/2] Fix malformed version on aniso8601 requirement --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c75df0baf..6699e895e 100644 --- a/setup.py +++ b/setup.py @@ -87,7 +87,7 @@ def run_tests(self): "six>=1.10.0,<2", "graphql-core>=2.1,<3", "graphql-relay>=0.4.5,<1", - "aniso8601>=3,<=6.0.*", + "aniso8601>=3,<=6.0", ], tests_require=tests_require, extras_require={ From 73bce2eb753ead3761939a39e5ad1c0c336e9507 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20L=C3=B3pez=20Calvo?= Date: Thu, 6 Jun 2019 10:53:27 +0200 Subject: [PATCH 2/2] 6 -> 6.0 Co-Authored-By: Jonathan Kim --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6699e895e..96004f08b 100644 --- a/setup.py +++ b/setup.py @@ -87,7 +87,7 @@ def run_tests(self): "six>=1.10.0,<2", "graphql-core>=2.1,<3", "graphql-relay>=0.4.5,<1", - "aniso8601>=3,<=6.0", + "aniso8601>=3,<=6", ], tests_require=tests_require, extras_require={