Skip to content

Commit db0dc95

Browse files
committed
update treeplot to make it installable again
1 parent cebece2 commit db0dc95

File tree

6 files changed

+5
-79
lines changed

6 files changed

+5
-79
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ tree.dot.pdf
1414
*.json
1515
*.tfevents
1616

17+
.pypirc
18+
1719
# Distribution / packaging
1820
.pylint.*
1921
.Python

make_build.sh

Lines changed: 0 additions & 29 deletions
This file was deleted.

make_clean.sh

Lines changed: 0 additions & 11 deletions
This file was deleted.

make_sphinx_and_commit.sh

Lines changed: 0 additions & 36 deletions
This file was deleted.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,))
1111

1212
# Setup ------------
13-
with open("README.md", "r") as fh:
13+
with open("README.md", "r", encoding='utf8') as fh:
1414
long_description = fh.read()
1515
setuptools.setup(
16-
install_requires=['sklearn','numpy','graphviz>=0.20.1','matplotlib','wget','funcsigs'],
16+
install_requires=['scikit-learn','numpy','graphviz>=0.20.1','matplotlib','wget','funcsigs'],
1717
python_requires='>=3',
1818
name='treeplot',
1919
version=new_version,

treeplot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
__author__ = 'Erdogan Tasksen'
1010
__email__ = '[email protected]'
11-
__version__ = '0.1.16'
11+
__version__ = '0.1.17'
1212

1313
# module level doc-string
1414
__doc__ = """

0 commit comments

Comments
 (0)