diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2022-03-25 10:43:44 -0700 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2022-03-25 10:43:44 -0700 |
commit | e89ee4ba47843b1bf9b3c0216fca3b9040618ed6 (patch) | |
tree | c0608ad534cd9f53bb9c30e91068073808bf9b46 /misc/py-onnx-tf/files/patch-setup.py | |
parent | science/py-oddt: Not install tests (diff) |
misc/py-onnx-tf: Update 1.6.0 -> 1.10.0
Also add patch that prevents tests from being installed into test/.
PR: 262759
Reported by: se@ (test directory)
Diffstat (limited to 'misc/py-onnx-tf/files/patch-setup.py')
-rw-r--r-- | misc/py-onnx-tf/files/patch-setup.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/misc/py-onnx-tf/files/patch-setup.py b/misc/py-onnx-tf/files/patch-setup.py new file mode 100644 index 000000000000..e526839a97de --- /dev/null +++ b/misc/py-onnx-tf/files/patch-setup.py @@ -0,0 +1,13 @@ +- same patch as suggested here: https://github.com/onnx/onnx-tensorflow/issues/1016 + +--- setup.py.orig 2022-03-25 17:32:07 UTC ++++ setup.py +@@ -30,7 +30,7 @@ setuptools.setup( + author='Arpith Jacob, Tian Jin, Gheorghe-Teodor Bercea, Wenhao Hu', + author_email='tian.jin1@ibm.com', + license='Apache License 2.0', +- packages=setuptools.find_packages(), ++ packages=setuptools.find_packages(exclude=['test*']), + zip_safe=False, + classifiers=[ + "Programming Language :: Python :: 2", |