-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Use uv native interface to simplify CI
#14149
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: master
Are you sure you want to change the base?
Conversation
# Conflicts: # doc/internals/contributing.rst # uv.lock
|
resolved conflicts |
uv native interface to simplify CI
| env: | ||
| PYTHONWARNINGS: "error" # treat all warnings as errors | ||
|
|
||
| deadsnakes: |
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.
Don't remove deadsnakes, it gives us nightly builds.
| - name: Install dependencies | ||
| run: uv pip install . --group docs | ||
| - uses: astral-sh/setup-uv@v7 | ||
| - name: Render the documentation |
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.
Is there a way we can keep the split of the resolve/install step and the run command step (throughout)? I use CI timings as a rough hueristic for various things.
| - name: Install uv | ||
| uses: astral-sh/setup-uv@v7 | ||
| with: | ||
| version: latest | ||
| enable-cache: false |
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.
Any reason to remove the name/options keys?
follow-on from #14148