Skip to content

Commit

Permalink
Bumped version number
Browse files Browse the repository at this point in the history
Increased sklearn version required and fixed a deprecation warning for sklearn
  • Loading branch information
Immudzen committed May 8, 2020
1 parent 68e2829 commit 64f09ef
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CADETMatch/kde_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from pathlib import Path
import numpy
import multiprocessing
from sklearn.neighbors.kde import KernelDensity
from sklearn.neighbors import KernelDensity
from sklearn.model_selection import cross_val_score
from sklearn import preprocessing
import copy
Expand Down
2 changes: 1 addition & 1 deletion CADETMatch/mcmc_plot_tube.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import numpy
from sklearn import preprocessing
from sklearn.neighbors.kde import KernelDensity
from sklearn.neighbors import KernelDensity
from sklearn.model_selection import cross_val_score
import scipy
import multiprocessing
Expand Down
2 changes: 1 addition & 1 deletion CADETMatch/mle.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import numpy
from sklearn import preprocessing
from sklearn.neighbors.kde import KernelDensity
from sklearn.neighbors import KernelDensity
from sklearn.model_selection import cross_val_score
import scipy
import multiprocessing
Expand Down
2 changes: 1 addition & 1 deletion CADETMatch/search/mcmc.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import emcee.autocorr as autocorr

import CADETMatch.kde_generator as kde_generator
from sklearn.neighbors.kde import KernelDensity
from sklearn.neighbors import KernelDensity

name = "MCMC"

Expand Down
2 changes: 1 addition & 1 deletion CADETMatch/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
__email__ = "[email protected]"
__license__ = "GNU General Public License v3 (GPLv3)"
__copyright__ = "2020 %s" % __author__
__version__ = "0.5.41"
__version__ = "0.5.42"
__uri__ = "https://github.com/modsim/CADET-Match"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
'CADET>=0.3',
'seaborn>=0.9',
'sklearn',
'scikit-learn>=0.21',
'scikit-learn>=0.22',
],
classifiers=[
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit 64f09ef

Please sign in to comment.