Skip to content

Commit

Permalink
feat: updated uv to v0.4.5 (#189)
Browse files Browse the repository at this point in the history
* feat: updated uv to v0.4.5

* fix: revert Dockerfile changes
  • Loading branch information
TeKrop authored Sep 5, 2024
1 parent 94a0299 commit 04eca3e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,15 @@ jobs:
strategy:
matrix:
python-version: ["3.12"]
uv-version: ["0.4.0"]
uv-version: ["0.4.5"]

steps:
- uses: actions/checkout@v4

- name: Set up uv
run: curl -LsSf https://astral.sh/uv/${{ matrix.uv-version }}/install.sh | sh
uses: astral-sh/setup-uv@v1
with:
version: "${{ matrix.uv-version }}"

- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build arguments
ARG PYTHON_VERSION=3.12
ARG UV_VERSION=0.4.0
ARG UV_VERSION=0.4.5

# Create a temporary stage to pull the uv binary
FROM ghcr.io/astral-sh/uv:${UV_VERSION} AS uv-stage
Expand Down

0 comments on commit 04eca3e

Please sign in to comment.