-
Notifications
You must be signed in to change notification settings - Fork 6
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
Set up development environment with uv pip #60
base: main
Are you sure you want to change the base?
Conversation
Makefile
Outdated
.PHONY: requirements | ||
ci_requirements: | ||
python3 -m pip install uv | ||
python3 -m uv pip install --system -r requirements/development.txt |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
python3 -m uv pip install --system -r requirements/development.txt | |
uv pip install --system -r requirements/development.txt |
Makefile
Outdated
.PHONY: requirements | ||
requirements: | ||
python3 -m pip install uv | ||
python3 -m pip install -r requirements/development.txt |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line can be changed as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have it this way to avoid making assumptions about the user's virtual environment setup. It's fine for our CI target, though.
Co-authored-by: Yagiz Nizipli <[email protected]>
This PR changes our
Makfile
to useuv pip
instead ofpip
.Resolves #58