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

Commits on Aug 17, 2020

  1. Use six instead of scipy._lib.six

    Newer versions of scipy do not have scipy._lib.six module (probably
    because they don't support python 2 anymore). So importing skgof
    throws ModuleNotFoundError.
    This commit adds an explicit dependency on six and uses that directly
    instead of using the scipy._lib.six module.
    
    Another easy way to fix it that does not need extra dependency
    would be to drop support for python 2 and just use str instead of
    six.string_types.
    saaketp committed Aug 17, 2020
    Configuration menu
    Copy the full SHA
    952674f View commit details
    Browse the repository at this point in the history