Fixed backend package versionconflict, and added instructions#376
Merged
lgelauff merged 6 commits intohatnote:masterfrom Apr 26, 2026
Merged
Conversation
lgelauff
requested changes
Apr 23, 2026
Collaborator
There was a problem hiding this comment.
Thanks for tracking this down @harshithaMMPS333 — the pluggy<1 constraint seems worth adding.
The setup instructions in requirements-dev.txt should be dropped though — that's not the right place for them, and the venv name (venv) doesn't match what the project uses (.venv311). I would appreciate your input on #511 though.
So the ideal version of this PR is just the one line:
pluggy<1
5b717d1 to
2f628c4
Compare
lgelauff
approved these changes
Apr 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I faced some errors while setting up the backend packages, especially with tox and pluggy
- problem
Project uses
tox 3.15.0 and supports pluggy < 1
but, pip installs the latest versions of the packages so the same this happened while installing pluggy, pip had installed the latest version of pluggy
- Cause
Not able to install packages and dependencies for backend
there were no proper instructions provided
and was stuck there trying to figure-out what was the reason behind that huge, massive error. took the help of AI(ChatGPT) to understand the Error, and for troubleshooting, brainstorming, and code generation to resolve the version conflict.
- Changes made

- Suggestions
It would be clear if we provide instructions in README.md
(I can create a PR for that)
All the instructions and final changes is written and modified by me.