-
Notifications
You must be signed in to change notification settings - Fork 6
Set up development environment with uv pip #60
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
base: main
Are you sure you want to change the base?
Changes from 2 commits
1fc670a
a8bb467
73902b3
be4f0b7
3bedb89
46525fb
1a7d4f6
7c6c82d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,5 +1,11 @@ | ||||||
.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 commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
.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 commentThe 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 commentThe 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. |
||||||
|
||||||
.PHONY: check | ||||||
|
Uh oh!
There was an error while loading. Please reload this page.