Skip to content
Open
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 .github/workflows/ci-tests-fabric.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
- { pkg-name: "fabric", python-version: "3.12", pytorch-version: "2.7" }
- { pkg-name: "fabric", python-version: "3.12", pytorch-version: "2.8" }
- { pkg-name: "fabric", python-version: "3.12", pytorch-version: "2.9" }
- { pkg-name: "fabric", python-version: "3.13", pytorch-version: "2.8" }

# Test minimum supported versions (oldest)
- { pkg-name: "fabric", pytorch-version: "2.1", requires: "oldest" }
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci-tests-pytorch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
- { pkg-name: "pytorch", python-version: "3.12", pytorch-version: "2.7" }
- { pkg-name: "pytorch", python-version: "3.12", pytorch-version: "2.8" }
- { pkg-name: "pytorch", python-version: "3.12", pytorch-version: "2.9" }
- { pkg-name: "pytorch", python-version: "3.13", pytorch-version: "2.8" }

# Test minimum supported versions (oldest)
- { pkg-name: "pytorch", pytorch-version: "2.1", requires: "oldest" }
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ filterwarnings = [
"error::FutureWarning",
"ignore::FutureWarning:onnxscript", # Temporary ignore until onnxscript is updated
"ignore:You are using `torch.load` with `weights_only=False`.*:FutureWarning",
"ignore::FutureWarning:torch.distributed.algorithms.ddp_comm_hooks",
]
xfail_strict = true
junit_duration_report = "call"
3 changes: 2 additions & 1 deletion requirements/fabric/test.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
coverage ==7.11.0; python_version >= "3.10"
coverage ==7.10.7; python_version < "3.10"
numpy >=1.21.0, <1.27.0
numpy >1.21.0, <1.27.0; python_version < "3.12"
numpy >2.1.0, <2.3.5; python_version >= "3.12"
pytest ==8.4.2
pytest-cov ==7.0.0
pytest-timeout ==2.4.0
Expand Down
3 changes: 2 additions & 1 deletion requirements/pytorch/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ pytest-random-order ==1.2.0
# needed in tests
cloudpickle >=1.3, <3.2.0
scikit-learn >0.22.1, <1.8.0
numpy >1.20.0, <1.27.0
numpy >1.21.0, <1.27.0; python_version < "3.12"
numpy >2.1.0, <2.3.5; python_version >= "3.12"
onnx >1.12.0, <1.20.0
onnxruntime >=1.12.0, <1.24.0
onnxscript >= 0.1.0, < 0.6.0
Expand Down
Loading