gitpure 1.0.3__tar.gz → 1.0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {gitpure-1.0.3 → gitpure-1.0.4}/.github/workflows/CI.yml +21 -21
- {gitpure-1.0.3 → gitpure-1.0.4}/Cargo.lock +858 -547
- {gitpure-1.0.3 → gitpure-1.0.4}/Cargo.toml +3 -2
- {gitpure-1.0.3 → gitpure-1.0.4}/PKG-INFO +1 -1
- {gitpure-1.0.3 → gitpure-1.0.4}/package-lock.json +758 -1267
- {gitpure-1.0.3 → gitpure-1.0.4}/.gitignore +0 -0
- {gitpure-1.0.3 → gitpure-1.0.4}/.releaserc.json +0 -0
- {gitpure-1.0.3 → gitpure-1.0.4}/LICENSE +0 -0
- {gitpure-1.0.3 → gitpure-1.0.4}/README.md +0 -0
- {gitpure-1.0.3 → gitpure-1.0.4}/gitpure.pyi +0 -0
- {gitpure-1.0.3 → gitpure-1.0.4}/package.json +0 -0
- {gitpure-1.0.3 → gitpure-1.0.4}/pyproject.toml +0 -0
- {gitpure-1.0.3 → gitpure-1.0.4}/renovate.json +0 -0
- {gitpure-1.0.3 → gitpure-1.0.4}/src/lib.rs +0 -0
- {gitpure-1.0.3 → gitpure-1.0.4}/tests/test_repo.py +0 -0
|
@@ -38,13 +38,13 @@ jobs:
|
|
|
38
38
|
runs-on: ubuntu-latest
|
|
39
39
|
needs: calculate-version
|
|
40
40
|
steps:
|
|
41
|
-
- uses: actions/checkout@
|
|
41
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
42
42
|
- name: Set up Python
|
|
43
|
-
uses: actions/setup-python@
|
|
43
|
+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
|
|
44
44
|
with:
|
|
45
45
|
python-version: '3.14'
|
|
46
46
|
- name: Set up Rust toolchain
|
|
47
|
-
uses: dtolnay/rust-toolchain@stable
|
|
47
|
+
uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 # stable
|
|
48
48
|
- name: Set Cargo.toml package version
|
|
49
49
|
uses: colt-1/toml-editor@da6b46ee7779ed730d2160393ed95fb20e82696d # 1.1.1
|
|
50
50
|
with:
|
|
@@ -79,8 +79,8 @@ jobs:
|
|
|
79
79
|
- runner: ubuntu-22.04
|
|
80
80
|
target: ppc64le
|
|
81
81
|
steps:
|
|
82
|
-
- uses: actions/checkout@
|
|
83
|
-
- uses: actions/setup-python@
|
|
82
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
83
|
+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
|
|
84
84
|
with:
|
|
85
85
|
python-version: 3.x
|
|
86
86
|
- name: Set Cargo.toml package version
|
|
@@ -98,7 +98,7 @@ jobs:
|
|
|
98
98
|
# ring requires a newer version of manylinux on aarch64
|
|
99
99
|
manylinux: ${{ matrix.platform.target == 'aarch64' && '2_28' || 'auto' }}
|
|
100
100
|
- name: Upload wheels
|
|
101
|
-
uses: actions/upload-artifact@
|
|
101
|
+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
|
|
102
102
|
with:
|
|
103
103
|
name: wheels-linux-${{ matrix.platform.target }}
|
|
104
104
|
path: dist
|
|
@@ -118,8 +118,8 @@ jobs:
|
|
|
118
118
|
- runner: ubuntu-22.04
|
|
119
119
|
target: armv7
|
|
120
120
|
steps:
|
|
121
|
-
- uses: actions/checkout@
|
|
122
|
-
- uses: actions/setup-python@
|
|
121
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
122
|
+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
|
|
123
123
|
with:
|
|
124
124
|
python-version: 3.x
|
|
125
125
|
- name: Set Cargo.toml package version
|
|
@@ -136,7 +136,7 @@ jobs:
|
|
|
136
136
|
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
137
137
|
manylinux: musllinux_1_2
|
|
138
138
|
- name: Upload wheels
|
|
139
|
-
uses: actions/upload-artifact@
|
|
139
|
+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
|
|
140
140
|
with:
|
|
141
141
|
name: wheels-musllinux-${{ matrix.platform.target }}
|
|
142
142
|
path: dist
|
|
@@ -152,8 +152,8 @@ jobs:
|
|
|
152
152
|
- runner: windows-latest
|
|
153
153
|
target: x86
|
|
154
154
|
steps:
|
|
155
|
-
- uses: actions/checkout@
|
|
156
|
-
- uses: actions/setup-python@
|
|
155
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
156
|
+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
|
|
157
157
|
with:
|
|
158
158
|
python-version: 3.x
|
|
159
159
|
architecture: ${{ matrix.platform.target }}
|
|
@@ -170,7 +170,7 @@ jobs:
|
|
|
170
170
|
args: --release --out dist --find-interpreter
|
|
171
171
|
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
172
172
|
- name: Upload wheels
|
|
173
|
-
uses: actions/upload-artifact@
|
|
173
|
+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
|
|
174
174
|
with:
|
|
175
175
|
name: wheels-windows-${{ matrix.platform.target }}
|
|
176
176
|
path: dist
|
|
@@ -186,8 +186,8 @@ jobs:
|
|
|
186
186
|
- runner: macos-15
|
|
187
187
|
target: x86_64
|
|
188
188
|
steps:
|
|
189
|
-
- uses: actions/checkout@
|
|
190
|
-
- uses: actions/setup-python@
|
|
189
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
190
|
+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
|
|
191
191
|
with:
|
|
192
192
|
python-version: 3.x
|
|
193
193
|
- name: Set Cargo.toml package version
|
|
@@ -203,7 +203,7 @@ jobs:
|
|
|
203
203
|
args: --release --out dist --find-interpreter
|
|
204
204
|
sccache: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
205
205
|
- name: Upload wheels
|
|
206
|
-
uses: actions/upload-artifact@
|
|
206
|
+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
|
|
207
207
|
with:
|
|
208
208
|
name: wheels-macos-${{ matrix.platform.target }}
|
|
209
209
|
path: dist
|
|
@@ -212,7 +212,7 @@ jobs:
|
|
|
212
212
|
needs: calculate-version
|
|
213
213
|
runs-on: ubuntu-latest
|
|
214
214
|
steps:
|
|
215
|
-
- uses: actions/checkout@
|
|
215
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
216
216
|
- name: Set Cargo.toml package version
|
|
217
217
|
uses: colt-1/toml-editor@da6b46ee7779ed730d2160393ed95fb20e82696d # 1.1.1
|
|
218
218
|
with:
|
|
@@ -225,7 +225,7 @@ jobs:
|
|
|
225
225
|
command: sdist
|
|
226
226
|
args: --out dist
|
|
227
227
|
- name: Upload sdist
|
|
228
|
-
uses: actions/upload-artifact@
|
|
228
|
+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
|
|
229
229
|
with:
|
|
230
230
|
name: wheels-sdist
|
|
231
231
|
path: dist
|
|
@@ -249,16 +249,16 @@ jobs:
|
|
|
249
249
|
url: https://pypi.org/p/gitpure
|
|
250
250
|
steps:
|
|
251
251
|
- name: Checkout
|
|
252
|
-
uses: actions/checkout@
|
|
252
|
+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
253
253
|
with:
|
|
254
254
|
fetch-depth: 0
|
|
255
|
-
- uses: actions/download-artifact@
|
|
255
|
+
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
|
|
256
256
|
- name: Generate artifact attestation
|
|
257
|
-
uses: actions/attest-build-provenance@
|
|
257
|
+
uses: actions/attest-build-provenance@a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32 # v4
|
|
258
258
|
with:
|
|
259
259
|
subject-path: 'wheels-*/*'
|
|
260
260
|
- name: Set up Node.js
|
|
261
|
-
uses: actions/setup-node@
|
|
261
|
+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
|
|
262
262
|
with:
|
|
263
263
|
node-version: 'lts/*'
|
|
264
264
|
- name: Install npm dependencies
|