Skip to content

Commit

Permalink
Updates version to 0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavm-nvidia committed Dec 16, 2024
1 parent 6a03870 commit e6f566d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
2 changes: 1 addition & 1 deletion tripy/nvtripy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# limitations under the License.
#

__version__ = "0.0.6"
__version__ = "0.0.7"

# Import TensorRT to make sure all dependent libraries are loaded first.
import tensorrt
Expand Down
18 changes: 7 additions & 11 deletions tripy/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[project]
name = "nvtripy"
version = "0.0.6"
authors = [{name = "NVIDIA", email="[email protected]"}]
version = "0.0.7"
authors = [{ name = "NVIDIA", email = "[email protected]" }]
description = "Tripy: A Python Programming Model For TensorRT"
readme = "README.md"
requires-python = ">= 3.9"
license = {text = "Apache 2.0"}
license = { text = "Apache 2.0" }
dependencies = [
"tensorrt~=10.0",
"mlir-tensorrt-compiler==0.1.38+cuda12.trt105",
Expand All @@ -30,9 +30,7 @@ requires = [
build-backend = "setuptools.build_meta"

[project.optional-dependencies]
dev = [
"pre-commit==3.6.0",
]
dev = ["pre-commit==3.6.0"]
build = [
"setuptools==75.3.0",
"wheel==0.44.0",
Expand Down Expand Up @@ -93,11 +91,9 @@ exclude = '''
'''

[tool.pytest.ini_options]
testpaths = [
"tests",
]
testpaths = ["tests"]
addopts = "--strict-markers"
markers = [
"l1: Indicates that the test should only be run in nightlies.",
"l1_release_package: Indicates that the test should be run in nightlies using the public build of Tripy."
"l1: Indicates that the test should only be run in nightlies.",
"l1_release_package: Indicates that the test should be run in nightlies using the public build of Tripy.",
]

0 comments on commit e6f566d

Please sign in to comment.