From c793148ff6bc97d03880b107b958fb9c4f87efc5 Mon Sep 17 00:00:00 2001 From: keisen Date: Mon, 25 Mar 2024 19:58:15 +0900 Subject: [PATCH] Release 0.8.7 --- .github/workflows/python-package-cron.yml | 6 +++++- CITATION.cff | 4 ++-- VERSION | 2 +- setup.py | 1 + 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-package-cron.yml b/.github/workflows/python-package-cron.yml index b3d67ad..d61e758 100644 --- a/.github/workflows/python-package-cron.yml +++ b/.github/workflows/python-package-cron.yml @@ -20,7 +20,7 @@ jobs: fail-fast: false matrix: python-version: [3.9, '3.10', '3.11', '3.12'] - tensorflow: [current, pre] + tensorflow: [current, pre, nightly] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} @@ -38,6 +38,10 @@ jobs: if: matrix.tensorflow == 'pre' run: | python -m pip install --upgrade --pre tensorflow + - name: Install pre-released Tensorflow + if: matrix.tensorflow == 'nightly' + run: | + python -m pip install --upgrade tf-nightly - name: Install dependencies run: | python -m pip install --upgrade -e .[develop,examples] diff --git a/CITATION.cff b/CITATION.cff index 85a5d26..8d84df6 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -8,8 +8,8 @@ title: "tf-keras-vis" repository: "https://github.com/keisen/tf-keras-vis" url: "https://keisen.github.io/tf-keras-vis-docs/" type: software -version: 0.8.6 -date-released: "2023-10-07" +version: 0.8.7 +date-released: "2024-03-25" license-url: "https://github.com/keisen/tf-keras-vis/blob/master/LICENSE" references: - authors: diff --git a/VERSION b/VERSION index 120f532..35864a9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.8.6 \ No newline at end of file +0.8.7 \ No newline at end of file diff --git a/setup.py b/setup.py index dbd8dde..c9b9985 100644 --- a/setup.py +++ b/setup.py @@ -29,6 +29,7 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Education", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Artificial Intelligence",