python-freezegun/denose.patch
Matej Cepl 3d3290fa2f Accepting request 713089 from home:mcepl:branches:devel:languages:python
- 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
2019-07-02 16:21:46 +00:00

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']