Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use six instead of scipy._lib.six #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
'packages': ('skgof',),
'install_requires': (
'numpy>=1.10',
'scipy>=0.16'
'scipy>=0.16',
'six>=1.0.0'
),
'tests_require': (
'flake8-print',
Expand Down
2 changes: 1 addition & 1 deletion skgof/ecdfgof.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
from functools import partial

from numpy import arange, log, sort
from scipy._lib.six import string_types
from six import string_types
from scipy.stats import distributions

from .addist import ad_unif
Expand Down