We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 657c11d commit dce0272Copy full SHA for dce0272
setup.py
@@ -4,13 +4,13 @@
4
import os
5
6
from distutils.command.sdist import sdist
7
-import setuptools
8
from distutils.core import setup
9
+from numpydoc import __version__ as version
10
+
11
if sys.version_info[:2] < (2, 7) or (3, 0) <= sys.version_info[0:2] < (3, 4):
12
raise RuntimeError("Python version 2.7 or >= 3.4 required.")
13
-from numpydoc import __version__ as version
14
15
def read(fname):
16
"""Utility function to get README.rst into long_description.
0 commit comments