From f9925a333a804d91fb52bc98b7836f80ce478398 Mon Sep 17 00:00:00 2001 From: Jason Farkas Date: Mon, 22 Jul 2019 17:25:58 -0400 Subject: [PATCH] Allow bumped version of aniso8601 In version 6 aniso8601 some rounding bugs were introduced. See the issue reported here: https://bitbucket.org/nielsenb/aniso8601/issues/24/float-induced-rounding-errors-when-parsing See the commit that fixed it here: https://bitbucket.org/nielsenb/aniso8601/commits/b4aca8ffc25588128d1c463ca735c8d6f180f55a Allow for a higher version to allow graphene users to avoid these issues. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1de8b968..75d92f79 100644 --- a/setup.py +++ b/setup.py @@ -87,7 +87,7 @@ setup( "six>=1.10.0,<2", "graphql-core>=2.1,<3", "graphql-relay>=2,<3", - "aniso8601>=3,<=6", + "aniso8601>=3,<=7", ], tests_require=tests_require, extras_require={