Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Component governance fix round 2 #20679

Merged
merged 8 commits into from
May 15, 2024
Merged
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
optimum>=1.14.1
transformers>=4.33.2,<= 4.37.2
torch>=2.2.0
onnx>=1.14.0
onnx>=1.16.0
datasets>=2.8.0
protobuf==3.20.2
psutil
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
onnx>=1.15.0
onnx>=1.16.0
transformers>=4.36.2
onnxscript>=0.1.0.dev20240126
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ diffusers==0.24.0
transformers==4.38.0
numpy>=1.24.1
accelerate
onnx==1.14.1
onnx>=1.14.1
coloredlogs
packaging
# Use newer version of protobuf might cause crash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ soundfile
librosa
optimum
onnxruntime-extensions>=0.9.0
onnx>=1.15.0
onnx>=1.16.0
protobuf==3.20.2
numpy==1.23.3
psutil
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@ steps:
and(eq('${{parameters.condition}}', 'always'), always())),
and(eq('${{parameters.condition}}', 'succeeded'), succeeded()))
inputs:
# ignore dmlc-core tracker for its CI, which is not used in onnxruntime build
# ignore unit tests in emscripten. emscripten unit tests are not used in onnxruntime build
# ignore onnx third_party directory. onnx third_party directory is not responsible for onnxruntime build
# ignore react_native e2e node_modules directory. react_native e2e node_modules directory is generated by react_native e2e tests
# ignore github directory. github directory is used for github actions, not for onnxruntime package
ignoreDirectories:
'$(Build.SourcesDirectory)/cmake/external/emsdk/upstream/emscripten/tests,
$(Build.SourcesDirectory)/cmake/external/onnx/third_party'
$(Build.SourcesDirectory)/cmake/external/onnx/third_party,
$(Build.SourcesDirectory)/js/react_native/e2e/node_modules,
$(Build.SourcesDirectory)/tools/ci_build/github'
Loading