-
Notifications
You must be signed in to change notification settings - Fork 822
Latest Graphene (v3.0.0) is incompatible with latest gql (v3.0.0) #1406
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
Comments
FYI our current workaround is to pin to a
|
@ddelange As a workaround, I vendored dependencies in the Dockerfile and added the import paths to be |
Looks like this should beresolved with #1421!! Do you know when we should expect a new release of graphene with this change? |
pinging @Cito for this question indeed it looks resolved btw :)
|
@ddelange Yes, I think this is resolved. But I'm not a Graphene maintainer and currently don't use it actively. I have passed the question on to the Graphene slack channel. |
Pinging @mvanlonden since he was able to help with releases in the past! 🙏🏼 |
Published a new release v3.1.0. New release should be on pypi shortly. |
Current behavior
Current Graphene (v3.0.0) and GQL (v3.0.0) packages are incompatible due to no overlap between specified
graphql-core
versions.If you try to install both using a package manager with a dependency resolver such as Poetry, it'll break.
Demo project or reproducible steps
There's no need for a demo project. Here are the minimal steps to reproduce the problem:
poetry init
poetry add graphene
poetry add gql
.graphql-core
package versions are incompatible.What is the expected behavior?
Graphene and GQL should be installable together
Use case/motivation
It'd be nice if both packages worked well together.
My environment
Other info
Graphene specifies
graphql-core~=3.1.2
while GQL specifiesgraphql-core>=3.2,<3.3
. There are obviously no overlapping versions.I suggest bumping the
graphql-core
version.Screenshots
The text was updated successfully, but these errors were encountered: