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
10 changes: 5 additions & 5 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@
"typing_extensions>=4.10",
"ml-dtypes",
)
ONNX = "onnx==1.17"
ONNX_RUNTIME = "onnxruntime==1.20.1"
PYTORCH = "torch==2.5.1"
TORCHVISON = "torchvision==0.20.1"
TRANSFORMERS = "transformers==4.37.2"
ONNX = "onnx==1.18"
ONNX_RUNTIME = "onnxruntime==1.22.1"
PYTORCH = "torch==2.8.0"
TORCHVISON = "torchvision==0.23"
TRANSFORMERS = "transformers==4.55.2"
Comment on lines +32 to +36
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We want to keep this the lowest versions supported; or create different pipelines that run on different versions?

ONNX_RUNTIME_NIGHTLY_DEPENDENCIES = (
"flatbuffers",
"coloredlogs",
Expand Down
7 changes: 7 additions & 0 deletions onnxscript/torch_export_patches/__init__.py
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would prefer that this is not at the top level because this is not the main responsibility of onnxscript

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
from __future__ import annotations

__all__ = ["torch_export_patches"]

from ._core import torch_export_patches
Loading
Loading