We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df75583 commit b0256f4Copy full SHA for b0256f4
.github/workflows/installer.yml
@@ -31,6 +31,14 @@ jobs:
31
- name: Check out the repo
32
uses: actions/checkout@v4
33
34
+ - name: Install uv
35
+ uses: astral-sh/setup-uv@v5
36
+ with:
37
+ enable-cache: true
38
+
39
+ - name: Install Python 3.12
40
+ run: uv python install 3.12
41
42
# NOTE: GitHub updated cmake in macOS runners breaking `crypto-cpp-py` build
43
# See https://github.com/actions/runner-images/issues/11926
44
- name: Install cmake
@@ -39,7 +47,7 @@ jobs:
47
cmake-version: '3.x'
48
49
- name: Install DipDup
- run: python src/dipdup/install.py --quiet --path .
50
+ run: uv run python src/dipdup/install.py --quiet --path .
51
52
- name: dipdup new
45
53
run: dipdup new --quiet
0 commit comments