Skip to content

Commit

Permalink
not using partial, need nose for testing, sphinx to build docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mikofski committed Apr 8, 2016
1 parent f2a85e2 commit 4f1ae1e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
author_email=__EMAIL__,
url=__URL__,
packages=['uncertainty_wrapper', 'uncertainty_wrapper.tests'],
requires=['numpy (>=1.8)'],
requires=['numpy (>=1.8)', 'nose', 'sphinx'],
package_data={'uncertainty_wrapper': [
'docs/conf.py', 'docs/*.rst', 'docs/Makefile', 'docs/make.bat'
]})
2 changes: 1 addition & 1 deletion uncertainty_wrapper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Diagonals of :math:`dF_{ij}` are standard deviations squared.
"""

from functools import wraps, partial
from functools import wraps
import numpy as np
import logging

Expand Down

0 comments on commit 4f1ae1e

Please sign in to comment.