Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion funcsigs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
try:
from collections import OrderedDict
except ImportError:
from funcsigs.odict import OrderedDict
from ordereddict import OrderedDict

from funcsigs.version import __version__

Expand Down
261 changes: 0 additions & 261 deletions funcsigs/odict.py

This file was deleted.

1 change: 1 addition & 0 deletions requirements/production.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ordereddict
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def load_rst(filename='docs/source/guide_content.rst'):
long_description=open('README.rst').read(),
# long_description=load_rst(),
license="ASL",
install_requires = [],
install_requires = ['ordereddict'],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
Expand Down