forked from pool/python-freezegun
- Upgrade to 0.3.12: * Refactor classes to functions * Ignore Selenium * Move to pytest * Conditionally patch time.clock (removed in 3.8) * Patch time.time_ns added in Python 3.7 OBS-URL: https://build.opensuse.org/request/show/713089 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-freezegun?expand=0&rev=23
12 lines
254 B
Diff
12 lines
254 B
Diff
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -4,7 +4,7 @@ import sys
|
|
from setuptools import setup
|
|
|
|
requires = ['six']
|
|
-tests_require = ['mock', 'nose']
|
|
+tests_require = ['mock']
|
|
|
|
if sys.version_info.major == 2:
|
|
requires += ['python-dateutil>=1.0, != 2.0']
|