Skip to content

Commit

Permalink
feat: update typing_extensions requirement
Browse files Browse the repository at this point in the history
'TypeIs' is available from typing_extensions v4.10
  • Loading branch information
Johansmm committed Jan 8, 2025
1 parent 5e7b0e4 commit 3606d70
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"pytest!=7.1.0",
"pyyaml",
"types-PyYAML",
"typing_extensions",
"typing_extensions>=4.10",
"ml-dtypes",
)
ONNX = "onnx==1.17"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ classifiers = [
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
]
dependencies = ["numpy", "onnx>=1.16", "typing_extensions", "ml_dtypes", "packaging"]
dependencies = ["numpy", "onnx>=1.16", "typing_extensions>=4.10", "ml_dtypes", "packaging"]

[tool.setuptools.packages.find]
include = ["onnxscript*"]
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ setuptools>=61.0.0
numpy
onnx-weekly>=1.17.0.dev20240325
onnxruntime>=1.17.0
typing_extensions
typing_extensions>=4.10
rich>=13.7.1

# Docs site
Expand Down

0 comments on commit 3606d70

Please sign in to comment.