Version conflict `aniso8601`
See original GitHub issueWhile built out my site with current latest graphene = 2.1.5
version, I got the following version conflict:
...
Got relativetimebuilder 2.0.0.
Version and requirements information containing aniso8601:
Requirement of graphene: aniso8601<=6.0.*,>=3
Requirement of aniso8601<=6.0.*,>=3: relativetimebuilder>=0.2.0
Requirement of relativetimebuilder>=0.2.0: aniso8601<8.0.0,>=7.0.0
While:
Updating test.
Error: There is a version conflict.
We already have: aniso8601 5.1.0
but relativetimebuilder 2.0.0 requires 'aniso8601<8.0.0,>=7.0.0'.
Seems like I got aniso8601
version 5.1.0
which still has the circular dependency issue.
Note:
For me pinning version to aniso8601 = 6.0.0
and relatvietimebuilder = 1.0.0
solved it. As you can see in the above traceback, relativetimebuilder
already has version is 2.0.0
, which requires aniso8601 >= 7.0.0
, that is why both package had to be pinned.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:6
- Comments:7 (3 by maintainers)
Top Results From Across the Web
There are incompatible versions in the resolved dependencies
Poetry will resolve your dependencies to the latest versions that match the constraints and don't conflict with each other. Poetry is also much ......
Read more >Top 5 aniso8601 Code Examples - Snyk
Learn more about how to use aniso8601, based on aniso8601 code examples created from the most popular ways it is used in public...
Read more >Unable to upgrade due to conflicting files / Pacman & Package ...
However, for the past week, I have been getting an error where a number of preexisting files under python site-packages exist and the...
Read more >Troubleshoot CLI Problems - DataKitchen Resource Portal
When working in the CLI, you receive a ContextualVersionConflict error similar ... or to resolve a dependency, you may create a version conflict...
Read more >Red Hat Security Advisory 2020-3247-01 - Packet Storm
Disk extension combined with disk compat version update isn't ... 1829189 - engine-setup httpd ssl configuration conflicts with Red Hat ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
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
v2.1.6 is ready to be released and it contains a fix for this: https://github.com/graphql-python/graphene/pull/1005
@eelkevdbos that commit actually fixes the error as described in the issue.