Skip to content

Commit 357d04a

Browse files
committed
Revert "revert branch UNPICK"
This reverts commit a275373.
1 parent a275373 commit 357d04a

File tree

17 files changed

+581
-391
lines changed

17 files changed

+581
-391
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
build:
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v4
3131
- name: Install Python
3232
uses: actions/setup-python@v5
3333
with:
@@ -51,7 +51,7 @@ jobs:
5151
generate-license:
5252
runs-on: ubuntu-latest
5353
steps:
54-
- uses: actions/checkout@v5
54+
- uses: actions/checkout@v4
5555
- uses: astral-sh/setup-uv@v6
5656
with:
5757
enable-cache: true
@@ -73,7 +73,7 @@ jobs:
7373
python-version: ["3.10"]
7474
os: [macos-latest, windows-latest]
7575
steps:
76-
- uses: actions/checkout@v5
76+
- uses: actions/checkout@v4
7777

7878
- uses: actions/setup-python@v5
7979
with:
@@ -83,7 +83,7 @@ jobs:
8383

8484
- run: rm LICENSE.txt
8585
- name: Download LICENSE.txt
86-
uses: actions/download-artifact@v5
86+
uses: actions/download-artifact@v4
8787
with:
8888
name: python-wheel-license
8989
path: .
@@ -129,7 +129,7 @@ jobs:
129129
matrix:
130130
python-version: ["3.10"]
131131
steps:
132-
- uses: actions/checkout@v5
132+
- uses: actions/checkout@v4
133133

134134
- uses: actions/setup-python@v5
135135
with:
@@ -139,7 +139,7 @@ jobs:
139139

140140
- run: rm LICENSE.txt
141141
- name: Download LICENSE.txt
142-
uses: actions/download-artifact@v5
142+
uses: actions/download-artifact@v4
143143
with:
144144
name: python-wheel-license
145145
path: .
@@ -173,10 +173,10 @@ jobs:
173173
name: Manylinux x86_64
174174
runs-on: ubuntu-latest
175175
steps:
176-
- uses: actions/checkout@v5
176+
- uses: actions/checkout@v4
177177
- run: rm LICENSE.txt
178178
- name: Download LICENSE.txt
179-
uses: actions/download-artifact@v5
179+
uses: actions/download-artifact@v4
180180
with:
181181
name: python-wheel-license
182182
path: .
@@ -202,10 +202,10 @@ jobs:
202202
name: Manylinux arm64
203203
runs-on: ubuntu-latest
204204
steps:
205-
- uses: actions/checkout@v5
205+
- uses: actions/checkout@v4
206206
- run: rm LICENSE.txt
207207
- name: Download LICENSE.txt
208-
uses: actions/download-artifact@v5
208+
uses: actions/download-artifact@v4
209209
with:
210210
name: python-wheel-license
211211
path: .
@@ -232,10 +232,10 @@ jobs:
232232
name: Source distribution
233233
runs-on: ubuntu-latest
234234
steps:
235-
- uses: actions/checkout@v5
235+
- uses: actions/checkout@v4
236236
- run: rm LICENSE.txt
237237
- name: Download LICENSE.txt
238-
uses: actions/download-artifact@v5
238+
uses: actions/download-artifact@v4
239239
with:
240240
name: python-wheel-license
241241
path: .
@@ -278,7 +278,7 @@ jobs:
278278
# needs: [build-manylinux, build-python-mac-win]
279279
# runs-on: ubuntu-latest
280280
# steps:
281-
# - uses: actions/download-artifact@v5
281+
# - uses: actions/download-artifact@v4
282282
# - name: Publish to PyPI
283283
# uses: pypa/gh-action-pypi-publish@master
284284
# with:

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v4
2929
- name: Setup Python
3030
uses: actions/setup-python@v5
3131
with:

.github/workflows/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838
exit 1
3939
fi
4040
- name: Checkout docs sources
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v4
4242
- name: Checkout docs target branch
4343
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref_type == 'tag')
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v4
4545
with:
4646
fetch-depth: 0
4747
ref: ${{ steps.target-branch.outputs.value }}

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- "stable"
4343

4444
steps:
45-
- uses: actions/checkout@v5
45+
- uses: actions/checkout@v4
4646

4747
- name: Setup Rust Toolchain
4848
uses: dtolnay/rust-toolchain@stable

0 commit comments

Comments
 (0)