diff --git a/.github/workflows/docker-image.yaml b/.github/workflows/docker-image.yaml index 8b749b26..17d730c3 100644 --- a/.github/workflows/docker-image.yaml +++ b/.github/workflows/docker-image.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest env: - TF_VERSION: 2.4.2 + TF_VERSION: 2.4.3 steps: - uses: actions/checkout@v2 diff --git a/Dockerfile b/Dockerfile index 8ae30684..8c59796a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Use tensorflow/tensorflow as the base image # Change the build arg to edit the tensorflow version. # Only supporting python3. -ARG TF_VERSION=2.4.2-gpu +ARG TF_VERSION=2.4.3-gpu FROM tensorflow/tensorflow:${TF_VERSION} diff --git a/deepcell/_version.py b/deepcell/_version.py index 4bee4c73..fba94d71 100644 --- a/deepcell/_version.py +++ b/deepcell/_version.py @@ -27,7 +27,7 @@ __title__ = 'DeepCell' __description__ = 'Deep learning for single cell image segmentation' __url__ = 'https://github.com/vanvalenlab/deepcell-tf' -__version__ = '0.9.1' +__version__ = '0.9.2' __download_url__ = '{}/tarball/{}'.format(__url__, __version__) __author__ = 'The Van Valen Lab' __author_email__ = 'vanvalen@caltech.edu' diff --git a/requirements.txt b/requirements.txt index 64cd3f89..5c5719b4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ numpy>=1.16.6,<1.20 scipy>=1.2.3,<2 scikit-image>=0.14.5 scikit-learn>=0.20.4 -tensorflow~=2.4.2 +tensorflow~=2.4.3 jupyter>=1.0.0,<2 deepcell-tracking>=0.3.1,<0.4.0 deepcell-toolbox>=0.9.0,<0.10.0 diff --git a/setup.py b/setup.py index dbf57d33..d3861651 100644 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ 'scipy>=1.2.3,<2', 'scikit-image>=0.14.5', 'scikit-learn>=0.20.4', - 'tensorflow~=2.4.2', + 'tensorflow~=2.4.3', 'jupyter>=1.0.0,<2', 'opencv-python-headless<5', 'deepcell-tracking>=0.3.1,<0.4.0',