Skip to content

Commit

Permalink
Update version, fix minor issues (#351)
Browse files Browse the repository at this point in the history
This PR makes the following changes,
- Update project version to `0.1.36`
- Torch is python dependency. Version is updated to `2.2.0+cpu` to avoid
internal CI failure
- Fix message printing issue in CI
  • Loading branch information
shelkesagar29 authored Nov 8, 2024
1 parent 522b0f4 commit a31da20
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mlir-tensorrt-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
print("Expected format is, ")
print("<title>")
print("<body>")
print("NOTE: Body should start on new line. `2 spaces + enter` for new line!")
print("NOTE: Body should start on new line. '2 spaces + enter' for new line!")
print("NOTE: Body should be at least two lines.")
sys.exit(1)
EOF
Expand Down
2 changes: 1 addition & 1 deletion mlir-tensorrt/Version.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
set(MLIR_TENSORRT_VERSION_MAJOR "0")
set(MLIR_TENSORRT_VERSION_MINOR "1")
set(MLIR_TENSORRT_VERSION_PATCH "35")
set(MLIR_TENSORRT_VERSION_PATCH "36")
set(MLIR_TENSORRT_VERSION
"${MLIR_TENSORRT_VERSION_MAJOR}.${MLIR_TENSORRT_VERSION_MINOR}.${MLIR_TENSORRT_VERSION_PATCH}")

2 changes: 1 addition & 1 deletion mlir-tensorrt/python/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ nvidia-ml-py
black
build
psutil
torch==2.1.0+cpu
torch==2.2.0+cpu

0 comments on commit a31da20

Please sign in to comment.