-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4107af4
commit 100b620
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,12 +70,12 @@ jobs: | |
allow-prereleases: true | ||
- uses: eifinger/[email protected] | ||
- name: Pin python-version ${{ matrix.python-version }} | ||
run: rye pin ${{ matrix.python-version }} | ||
- run: rye config --set-bool behavior.use-uv=true | ||
# Update all dependencies to the latest version possible | ||
- run: rye sync --update-all | ||
- run: | | ||
# We're using uv here bc I couldn't get rye to work with pins for beta | ||
# Update all dependencies to the latest version possible | ||
run: | | ||
pip install uv | ||
uv python pin ${{ matrix.python-version }} | ||
uv sync --update-all | ||
uv pip install "logfire-api @ file://logfire-api" | ||
- run: rye show | ||
- run: mkdir coverage | ||
|