* Fix locale timestamp bug. CC #328 * Fix calendar.timegm behavior * Fix for Py3.8 * Reset time.time_ns on stop - drop remove_dependency_on_mock.patch OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-freezegun?expand=0&rev=29
15 lines
369 B
Diff
15 lines
369 B
Diff
Index: freezegun-0.3.15/setup.py
|
|
===================================================================
|
|
--- freezegun-0.3.15.orig/setup.py
|
|
+++ freezegun-0.3.15/setup.py
|
|
@@ -5,8 +5,7 @@ from setuptools import setup
|
|
|
|
requires = ['six']
|
|
tests_require = [
|
|
- 'mock;python_version<"3.4"',
|
|
- 'nose'
|
|
+ 'mock;python_version<"3.4"'
|
|
]
|
|
|
|
if sys.version_info.major == 2:
|