Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tests/snapshots/** text eol=lf
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,10 @@ jobs:
resolution: lowest-direct
- os: windows-latest
resolution: lowest-direct
- python-version: "3.14"
resolution: lowest-direct
- python-version: "3.15"
resolution: lowest-direct
runs-on: ${{ matrix.os }}
continue-on-error: true

Expand Down Expand Up @@ -142,6 +146,7 @@ jobs:

- name: Download objects inventory
uses: actions/download-artifact@v4
if: ${{ matrix.resolution == 'highest' }}
with:
name: objects.inv
path: site/
Expand Down
2 changes: 1 addition & 1 deletion scripts/make.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def environ(**kwargs: str) -> Iterator[None]:

def uv_install(venv: Path) -> None:
"""Install dependencies using uv."""
with environ(UV_PROJECT_ENVIRONMENT=str(venv), PYO3_USE_ABI3_FORWARD_COMPATIBILITY="1"):
with environ(UV_PROJECT_ENVIRONMENT=str(venv)):
if "CI" in os.environ:
shell("uv sync --no-editable")
else:
Expand Down
Loading