99db819aee
- Update to version 1.2.5 + remove Remove-shebang-line.patch, replaced by sed expression + add sure_hideDeps.patch, hides implicit Python dependencies + add runTestsOnly.patch only run the tests with make test + run the package tests as part of the package build + No upstream changelog available OBS-URL: https://build.opensuse.org/request/show/284524 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sure?expand=0&rev=2
23 lines
730 B
Diff
23 lines
730 B
Diff
--- setup.py.orig
|
|
+++ setup.py
|
|
@@ -73,8 +73,8 @@ local_file = lambda *f: \
|
|
open(os.path.join(os.path.dirname(__file__), *f)).read()
|
|
|
|
|
|
-install_requires, dependency_links = \
|
|
- parse_requirements('requirements.txt')
|
|
+#install_requires, dependency_links = \
|
|
+# parse_requirements('requirements.txt')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
@@ -87,6 +87,6 @@ if __name__ == '__main__':
|
|
include_package_data=True,
|
|
url='http://github.com/gabrielfalcao/sure',
|
|
packages=find_packages(exclude=['*tests*']),
|
|
- install_requires=install_requires,
|
|
- dependency_links=dependency_links,
|
|
+# install_requires=install_requires,
|
|
+# dependency_links=dependency_links,
|
|
)
|