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 1318463 commit 384b732Copy full SHA for 384b732
.github/workflows/release.yaml
@@ -21,19 +21,19 @@ jobs:
21
with:
22
fetch-depth: 0
23
24
- - name: Set up Python 3.10
25
- uses: actions/setup-python@v5
+ - name: Install the latest version of uv
+ uses: astral-sh/setup-uv@v5
26
27
- python-version: "3.10"
+ version: "latest"
28
+ python-version: 3.12
29
- - name: Upgrade pip and nox
30
+ - name: Install nox
31
run: |
- pip install --upgrade pip nox
32
- pip --version
+ uv pip install nox
33
nox --version
34
35
- name: Build package
36
- run: nox -s build-3.10
+ run: nox -s build-3.12
37
38
- name: Upload package
39
if: github.event_name == 'release'
0 commit comments