-
Notifications
You must be signed in to change notification settings - Fork 89
feat: switch pruna from poetry to uv #164
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
Changes from all commits
3fb24d2
9ce7bb0
d08c275
63a6e1c
d97c284
150c697
e0b5ec6
d036175
c9050ab
6bb200a
099f14a
3cc28fe
5ecb4e4
3004511
7718cd4
d4a29b5
7f90e0a
8abe524
3dc750e
3889a1e
d1b7a12
349de97
bcd76e5
422db7c
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 |
|---|---|---|
|
|
@@ -19,7 +19,6 @@ jobs: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | ||
| python-version: ["3.9", "3.10", "3.11", "3.12"] | ||
|
|
||
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
|
|
@@ -29,17 +28,12 @@ jobs: | |
| with: | ||
| python-version: ${{ matrix.python-version }} | ||
|
|
||
| - name: Install Poetry on Windows | ||
| if: runner.os == 'Windows' | ||
| run: | | ||
| powershell -Command "(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | python - --version 1.8.5" | ||
| echo "$(python -m site --user-base)\Scripts" >> $env:GITHUB_PATH | ||
|
|
||
|
johannaSommer marked this conversation as resolved.
Outdated
|
||
| - name: Install Poetry on Unix | ||
| if: runner.os != 'Windows' | ||
| run: | | ||
| curl -sSL https://install.python-poetry.org | POETRY_VERSION=1.8.5 python3 - | ||
| echo "$(python3 -m site --user-base)/bin" >> $GITHUB_PATH | ||
| - name: Install uv | ||
| uses: astral-sh/setup-uv@v6 | ||
| with: | ||
| enable-cache: true | ||
|
|
||
| - name: Install dependencies | ||
| run: pip install -e . | ||
| run: | | ||
| uv venv | ||
| uv pip install -e . | ||
|
Comment on lines
-45
to
+39
Contributor
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. Either this or you can also say |
||
|
johnrachwan123 marked this conversation as resolved.
|
Uh oh!
There was an error while loading. Please reload this page.