Skip to content

Commit

Permalink
Release 0.8.7
Browse files Browse the repository at this point in the history
  • Loading branch information
keisen committed Mar 25, 2024
1 parent 35da52e commit c793148
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/python-package-cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.6
0.8.7
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit c793148

Please sign in to comment.