Skip to content
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

Update dependency to pin to major versions, not minor #121

Open
ghostsquad opened this issue Feb 26, 2024 · 1 comment
Open

Update dependency to pin to major versions, not minor #121

ghostsquad opened this issue Feb 26, 2024 · 1 comment

Comments

@ghostsquad
Copy link

I recently got a node install conflict that points to dynamicprompts having too specific of a dependency requirement:

ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
dynamicprompts 0.30.2 requires jinja2~=3.1, but you have jinja2 3.0.3 which is incompatible.

If you were to pin to >=3.1,<4 that would enable the use of non-breaking upgrades to Jinja from other packages.

@akx
Copy link
Collaborator

akx commented Mar 21, 2024

Mmm, ~=3.1 is actually equivalent to >=3.1,<4 as far as I know (the Compatible release clause).

Your error message is saying that you have an older version of Jinja2 installed than what we support.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants