diff --git a/docs/conf.py b/docs/conf.py index f726d2a..8a5371f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ 'boto3', 'joblib', 'fastai', - 'fastai.callbacks', + 'fastai.basic_train', 'telegram', 'numpy', 'pandas', @@ -49,7 +49,7 @@ # The short X.Y version version = '0.13' # The full version, including alpha/beta/rc tags -release = '0.13.5' +release = '0.13.6' # -- General configuration --------------------------------------------------- diff --git a/neptunecontrib/monitoring/fastai.py b/neptunecontrib/monitoring/fastai.py index 7363a1a..2c01a5e 100644 --- a/neptunecontrib/monitoring/fastai.py +++ b/neptunecontrib/monitoring/fastai.py @@ -19,13 +19,13 @@ import neptune if sys.version_info[0] == 3 and sys.version_info[1] >= 6: - from fastai.callbacks import LearnerCallback + from fastai.basic_train import LearnerCallback else: class LearnerCallback: pass - LearnerCallback.__module__ = 'fastai.callbacks' + LearnerCallback.__module__ = 'fastai.basic_train' class NeptuneMonitor(LearnerCallback): diff --git a/setup.py b/setup.py index 296c746..1aa6826 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def main(): setup( name='neptune-contrib', - version='0.13.5', + version='0.13.6', description='Neptune Python library contributions', author='neptune.ml', author_email='contact@neptune.ml',