Skip to content

Commit 3e4f72b

Browse files
committed
0.2.1: Fixed slight bug in setup that prevents installation
1 parent 26d5954 commit 3e4f72b

File tree

4 files changed

+4
-10
lines changed

4 files changed

+4
-10
lines changed

docs/fetch.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Fetching The Module Lists
22
=========================
33

4-
The lists of modules themselves are grabbed from the Sphinx object inventory (ie the file used by :py:mod`sphinx.ext.intersphinx` in order to build links to existing Python modules/functions/etc). You probably shouldn't need to mess around with it. But if you want to, here you go.
4+
The lists of modules themselves are grabbed from the Sphinx object inventory (ie the file used by :py:mod:`sphinx.ext.intersphinx` in order to build links to existing Python modules/functions/etc). You probably shouldn't need to mess around with it. But if you want to, here you go.
55

66

77
.. automodule:: stdlib_list.fetch

setup.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
11
import setuptools
2-
from stdlib_list import __version__
2+
from stdlib_list._version import __version__
33

44

55
try:
66
with open('README.rst') as f:
77
long_description = f.read()
88
except IOError:
99
long_description = ""
10-
try:
11-
with open("'requirements.txt'") as f:
12-
requirements = [x for x in [y.strip() for y in f.readlines()] if x]
13-
except IOError:
14-
requirements = []
1510

1611

1712
setuptools.setup(
@@ -21,7 +16,7 @@
2116
author_email='[email protected]',
2217
url='https://github.com/jackmaney/python-stdlib-list',
2318
version=__version__,
24-
install_requires=requirements,
19+
install_requires=["sphinx"],
2520
description='A list of Python Standard Libraries (2.6-7, 3.2-4).',
2621
long_description=long_description,
2722
include_package_data=True,

stdlib_list/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,3 @@ def get_canonical_version(version):
2222

2323

2424
from .base import stdlib_list
25-
from .fetch import fetch_list

stdlib_list/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.0"
1+
__version__ = "0.2.1"

0 commit comments

Comments
 (0)