Skip to content

Commit 8487571

Browse files
committed
ci: Fix test matrix compatibility
1 parent ff042bb commit 8487571

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tests/snapshots/** text eol=lf

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ jobs:
142142

143143
- name: Download objects inventory
144144
uses: actions/download-artifact@v4
145+
if: ${{ matrix.resolution == 'highest' }}
145146
with:
146147
name: objects.inv
147148
path: site/

scripts/make.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def environ(**kwargs: str) -> Iterator[None]:
4040

4141
def uv_install(venv: Path) -> None:
4242
"""Install dependencies using uv."""
43-
with environ(UV_PROJECT_ENVIRONMENT=str(venv), PYO3_USE_ABI3_FORWARD_COMPATIBILITY="1"):
43+
with environ(UV_PROJECT_ENVIRONMENT=str(venv)):
4444
if "CI" in os.environ:
4545
shell("uv sync --no-editable")
4646
else:

0 commit comments

Comments
 (0)