Skip to content

Commit

Permalink
fix build platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Jan 18, 2025
1 parent 25e8f4c commit 6ec739c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ jobs:
exclude:
- python: '3.13'
platform: macos-latest
- python: '3.13'
platform: windows-latest
- python: '3.13'
platform: ubuntu-24.04-arm
steps:
- name: "🛒 Checkout"
uses: actions/checkout@v4
Expand Down
4 changes: 1 addition & 3 deletions lenskit/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,4 @@ url = "https://download.pytorch.org/whl/cpu"
explicit = true

[tool.uv.sources]
torch = [
{ index = "pytorch-cpu", marker = "platform_system == 'Linux' and platform_machine == 'x86_64'" },
]
torch = [{ index = "pytorch-cpu" }]
4 changes: 2 additions & 2 deletions pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion workflows/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ const test_matrix = {
matrix: {
python: PYTHONS,
platform: VANILLA_PLATFORMS,
exclude: [{ python: "3.13", platform: "macos-latest" }],
exclude: [
{ python: "3.13", platform: "macos-latest" },
{ python: "3.13", platform: "windows-latest" },
{ python: "3.13", platform: "ubuntu-24.04-arm" },
],
},
}),
nojit: testJob({
Expand Down

0 comments on commit 6ec739c

Please sign in to comment.