Skip to content

Commit

Permalink
0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
erdogant committed May 8, 2023
1 parent d352146 commit 4d56dfe
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 4 deletions.
2 changes: 1 addition & 1 deletion classeval/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

__author__ = 'Erdogan Tasksen'
__email__ = 'erdogant@gmail.com'
__version__ = '0.2.0'
__version__ = '0.2.1'

# module level doc-string
__doc__ = """
Expand Down
2 changes: 2 additions & 0 deletions classeval/examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@


# %% cross validation example
import classeval as clf
X, y = clf.load_example('breast')
out = {}
for i in range(0,10):
Expand All @@ -26,6 +27,7 @@


# %% Two-class
import classeval as clf
X, y = clf.load_example('breast')
X_train, X_test, y_train, y_true = train_test_split(X, y, test_size=0.2)

Expand Down
11 changes: 9 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
numpy
sphinx_rtd_theme
# rst2pdf

rst2pdf
#spyder-kernels==2.4.*
sphinx
pytest
#git+https://github.com/SuperKogito/sphinxcontrib-pdfembed.git
irelease
sphinxcontrib-fulltoc
#nbconvert # jupyter nbconvert --to html notebook.ipynb
7 changes: 7 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
matplotlib
numpy
funcsigs
sklearn
colourmap
scikit-learn
pandas
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
install_requires=['matplotlib','numpy','funcsigs','sklearn','colourmap'],
install_requires=['matplotlib','numpy','funcsigs','sklearn','colourmap','scikit-learn','pandas'],
python_requires='>=3',
name='classeval',
version=new_version,
Expand Down

0 comments on commit 4d56dfe

Please sign in to comment.