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 31f6bfa commit 16e415d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,14 @@ jobs:
python -m pip install --upgrade pip
pip install tensorflow==${{ matrix.tensorflow-version }}
pip install tensorflow-probability==${{ matrix.tfp-version }}
pip install tf-keras
# Install tf-keras for tensorflow 2.16.1
if [ "${{ matrix.tensorflow-version }}" == "2.16.1" ]; then
pip install tf-keras
fi
# Install tf-keras for tensorflow 2.17.0
if [ "${{ matrix.tensorflow-version }}" == "2.17.0" ]; then
pip install tf-keras
fi
pip install coveralls
pip install -r requirements.txt
Expand All @@ -56,10 +63,8 @@ jobs:
print('Python version: ', sys.version); \
import tensorflow as tf; \
import tensorflow_probability as tfp; \
import tf_keras as tfk; \
print('Tensorflow version =', tf.__version__); \
print('Tensorflow Probability version =', tfp.__version__); \
print('TF_Keras version =', tfk.__version__); \
"
- name: Run unit tests
Expand Down

0 comments on commit 16e415d

Please sign in to comment.