Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
lemieuxl committed Aug 14, 2015
2 parents 613804d + 4882f48 commit 4bfd576
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions pyplink/pyplink.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
import numpy as np
import pandas as pd

from six.moves import range


__author__ = "Louis-Philippe Lemieux Perreault"
__copyright__ = "Copyright 2014 Louis-Philippe Lemieux Perreault"
Expand Down
2 changes: 2 additions & 0 deletions pyplink/tests/test_pyplink.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
import numpy as np
import pandas as pd

from six.moves import range

from ..pyplink import PyPlink


Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

MAJOR = 1
MINOR = 0
MICRO = 0
MICRO = 1
VERSION = "{}.{}.{}".format(MAJOR, MINOR, MICRO)


Expand Down Expand Up @@ -57,7 +57,8 @@ def setup_package():
packages=["pyplink", "pyplink.tests"],
package_data={"pyplink.tests": ["data/test_data.*"], },
test_suite="pyplink.tests.test_suite",
install_requires=["numpy >= 1.8.2", "pandas >= 0.14.1"],
install_requires=["numpy >= 1.8.2", "pandas >= 0.14.1",
"six >= 1.9.0"],
classifiers=["Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft",
Expand Down

0 comments on commit 4bfd576

Please sign in to comment.