diff --git a/barrage/__init__.py b/barrage/__init__.py index 9fa8fdc..545e79a 100644 --- a/barrage/__init__.py +++ b/barrage/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.4.0" +__version__ = "0.6.0" from .log import logger # noqa from .engine import BarrageModel # noqa diff --git a/docs/conf.py b/docs/conf.py index aab4f5c..a9408e0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -10,7 +10,7 @@ project = "barrage" copyright = "2019, Brian Nemsick" author = "Brian Nemsick" -version = "0.5.0" +version = "0.6.0" # -- General configuration --------------------------------------------------- extensions = [ diff --git a/setup.py b/setup.py index cf9a779..b42c859 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name="barrage", - version="0.5.0", + version="0.6.0", description="A supervised deep learning tool.", long_description=long_description, author="Brian Nemsick", @@ -18,13 +18,12 @@ license="MIT", python_requires=">=3.6", install_requires=[ - "absl-py>=0.8.0", # <0.8.0 conflicts with logging module "click", "cytoolz>=0.9.0", "jsonschema>=3.0", "numpy", "pandas", - "tensorflow>=2.3.0, <2.4", + "tensorflow>=2.4.0, <2.5", ], extras_require={ "tests": [