Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
mraveri committed Sep 22, 2024
1 parent 42e369a commit 2e7b5be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
fail-fast: true

matrix:

python-version: ["3.9", "3.10", "3.12"]
tensorflow-version: ["2.15.0", "2.16.1", "2.17.0"]
tfp-version: ["0.23.0", "0.24.0"]
Expand Down Expand Up @@ -45,7 +46,7 @@ jobs:
python -m pip install --upgrade pip
pip install tensorflow==${{ matrix.tensorflow-version }}
pip install tensorflow-probability==${{ matrix.tfp-version }}
if ${{ matrix.tensorflow-version }} >= "2.16.0"; then
if ${{ matrix.tensorflow-version }} == "2.16.1" or ${{ matrix.tensorflow-version }} == "2.17.0"; then
pip install tf-keras
export TF_USE_LEGACY_KERAS=1
fi
Expand Down
1 change: 0 additions & 1 deletion tensiometer/synthetic_probability/synthetic_probability.py
Original file line number Diff line number Diff line change
Expand Up @@ -1328,7 +1328,6 @@ def save(self, outroot):
# save out trainable transformation:
if self.trainable_transformation is not None:
self.trainable_transformation.save(outroot)

#
return None

Expand Down

0 comments on commit 2e7b5be

Please sign in to comment.