gitpure 1.0.2__tar.gz → 1.0.3__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.2 → gitpure-1.0.3}/.github/workflows/CI.yml +9 -9
- {gitpure-1.0.2 → gitpure-1.0.3}/Cargo.lock +466 -362
- {gitpure-1.0.2 → gitpure-1.0.3}/Cargo.toml +3 -3
- {gitpure-1.0.2 → gitpure-1.0.3}/PKG-INFO +3 -3
- {gitpure-1.0.2 → gitpure-1.0.3}/package-lock.json +11 -29
- {gitpure-1.0.2 → gitpure-1.0.3}/package.json +1 -1
- {gitpure-1.0.2 → gitpure-1.0.3}/renovate.json +1 -0
- {gitpure-1.0.2 → gitpure-1.0.3}/.gitignore +0 -0
- {gitpure-1.0.2 → gitpure-1.0.3}/.releaserc.json +0 -0
- {gitpure-1.0.2 → gitpure-1.0.3}/LICENSE +0 -0
- {gitpure-1.0.2 → gitpure-1.0.3}/README.md +0 -0
- {gitpure-1.0.2 → gitpure-1.0.3}/gitpure.pyi +0 -0
- {gitpure-1.0.2 → gitpure-1.0.3}/pyproject.toml +0 -0
- {gitpure-1.0.2 → gitpure-1.0.3}/src/lib.rs +0 -0
- {gitpure-1.0.2 → gitpure-1.0.3}/tests/test_repo.py +0 -0
|
@@ -42,7 +42,7 @@ jobs:
|
|
|
42
42
|
- name: Set up Python
|
|
43
43
|
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
|
|
44
44
|
with:
|
|
45
|
-
python-version: '3.
|
|
45
|
+
python-version: '3.14'
|
|
46
46
|
- name: Set up Rust toolchain
|
|
47
47
|
uses: dtolnay/rust-toolchain@stable
|
|
48
48
|
- 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@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
|
102
102
|
with:
|
|
103
103
|
name: wheels-linux-${{ matrix.platform.target }}
|
|
104
104
|
path: dist
|
|
@@ -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@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
|
140
140
|
with:
|
|
141
141
|
name: wheels-musllinux-${{ matrix.platform.target }}
|
|
142
142
|
path: dist
|
|
@@ -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@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
|
174
174
|
with:
|
|
175
175
|
name: wheels-windows-${{ matrix.platform.target }}
|
|
176
176
|
path: dist
|
|
@@ -181,10 +181,10 @@ jobs:
|
|
|
181
181
|
strategy:
|
|
182
182
|
matrix:
|
|
183
183
|
platform:
|
|
184
|
-
- runner: macos-13
|
|
185
|
-
target: x86_64
|
|
186
184
|
- runner: macos-14
|
|
187
185
|
target: aarch64
|
|
186
|
+
- runner: macos-15
|
|
187
|
+
target: x86_64
|
|
188
188
|
steps:
|
|
189
189
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
|
|
190
190
|
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
|
|
@@ -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@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
|
207
207
|
with:
|
|
208
208
|
name: wheels-macos-${{ matrix.platform.target }}
|
|
209
209
|
path: dist
|
|
@@ -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@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5
|
|
229
229
|
with:
|
|
230
230
|
name: wheels-sdist
|
|
231
231
|
path: dist
|
|
@@ -252,7 +252,7 @@ jobs:
|
|
|
252
252
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
|
|
253
253
|
with:
|
|
254
254
|
fetch-depth: 0
|
|
255
|
-
- uses: actions/download-artifact@
|
|
255
|
+
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6
|
|
256
256
|
- name: Generate artifact attestation
|
|
257
257
|
uses: actions/attest-build-provenance@977bb373ede98d70efdf65b84cb5f73e068dcc2a # v3
|
|
258
258
|
with:
|