onnx-tensorflow icon indicating copy to clipboard operation
onnx-tensorflow copied to clipboard

Please don't install tests into the 'test' directory

Open yurivict opened this issue 3 years ago • 0 comments

This causes conflicts with other packages, see this FreeBSD bug report.

This patch removes tests:

--- 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='[email protected]',
     license='Apache License 2.0',
-    packages=setuptools.find_packages(),
+    packages=setuptools.find_packages(exclude=['test*']),
     zip_safe=False, 
     classifiers=[
          "Programming Language :: Python :: 2",

yurivict avatar Mar 25 '22 17:03 yurivict