-
Notifications
You must be signed in to change notification settings - Fork 829
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version conflict aniso8601
#1008
Comments
Fix might be in this commit: 431e93c |
Closes graphql-python#1008 The only change should not affect graphene https://bitbucket.org/nielsenb/aniso8601/issues/24/float-induced-rounding-errors-when-parsing
You would still get a conflict even with that commit since |
Yes this is an internal conflict of |
v2.1.6 is ready to be released and it contains a fix for this: #1005 @eelkevdbos that commit actually fixes the error as described in the issue. |
Pinning |
@jkimbo sorry, I meant to say that, but reading it again I see it can be interpreted both ways (not a native speaker) |
v2.1.6 has been released to PyPi which fixes this issue: https://pypi.org/project/graphene/2.1.6/ Sorry for the inconvenience! Release notes: https://github.com/graphql-python/graphene/releases/tag/v2.1.6 |
Closes graphql-python#1008 The only change should not affect graphene https://bitbucket.org/nielsenb/aniso8601/issues/24/float-induced-rounding-errors-when-parsing
Closes #1008 The only change should not affect graphene https://bitbucket.org/nielsenb/aniso8601/issues/24/float-induced-rounding-errors-when-parsing
While built out my site with current latest
graphene = 2.1.5
version, I got the following version conflict:Seems like I got
aniso8601
version5.1.0
which still has the circular dependency issue.Note:
For me pinning version to
aniso8601 = 6.0.0
andrelatvietimebuilder = 1.0.0
solved it. As you can see in the above traceback,relativetimebuilder
already has version is2.0.0
, which requiresaniso8601 >= 7.0.0
, that is why both package had to be pinned.The text was updated successfully, but these errors were encountered: