Skip to content

Commit

Permalink
change version
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangxinglei committed Jun 3, 2024
1 parent e320210 commit 4945533
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 7 additions & 0 deletions core/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -145,5 +145,12 @@ cc_binary(
"@boost//:random",
"@boost//:iostreams",
],
linkopts = [
"-Wl,-rpath,$$ORIGIN/../libs",
"-Wl,-rpath,$$ORIGIN/../../../../../lib",
"-Wl,-rpath,$$ORIGIN/../../tensorflow",
"-Wl,-rpath,$$ORIGIN/../../tensorflow/python"
],

linkshared = 1,
)
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import os
from setuptools import setup, find_packages
from importlib.machinery import SourceFileLoader

version = "0.13.0.dev0"
# use importlib to avoid import so file
_version = SourceFileLoader('version', 'tensornet/version.py').load_module()
version = _version.VERSION

setup(
name='qihoo-tensornet',
Expand Down

0 comments on commit 4945533

Please sign in to comment.