Skip to content

Commit 7811c6b

Browse files
committed
Remove tensorflow-addons
Signed-off-by: Beat Buesser <[email protected]>
1 parent 9e634ca commit 7811c6b

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/ci-keras.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
python: '3.10'
3434
tensorflow: 2.18.1
3535
keras: 3.10.0
36-
tf_addons: 0.23.0
3736

3837
name: ${{ matrix.name }}
3938
steps:
@@ -48,10 +47,9 @@ jobs:
4847
sudo apt-get update
4948
sudo apt-get -y -q install ffmpeg libavcodec-extra
5049
python -m pip install --upgrade pip setuptools wheel
51-
pip install -q -r <(sed '/^tensorflow/d;/^keras/d;/^tensorflow-addons/d' requirements_test.txt)
50+
pip install -q -r <(sed '/^tensorflow/d;/^keras/d' requirements_test.txt)
5251
pip install tensorflow==${{ matrix.tensorflow }}
5352
pip install keras==${{ matrix.keras }}
54-
pip install tensorflow-addons==${{ matrix.tf_addons }}
5553
pip list
5654
- name: Run Tests
5755
run: ./run_tests.sh ${{ matrix.framework }}

.github/workflows/ci-tensorflow-v2.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ jobs:
3434
tensorflow: 2.18.1
3535
tf_version: v2
3636
keras: 3.10.0
37-
tf_addons: 0.23.0
3837

3938
name: ${{ matrix.name }}
4039
steps:
@@ -49,10 +48,9 @@ jobs:
4948
sudo apt-get update
5049
sudo apt-get -y -q install ffmpeg libavcodec-extra
5150
python -m pip install --upgrade pip setuptools wheel
52-
pip install -q -r <(sed '/^tensorflow/d;/^keras/d;/^tensorflow-addons/d' requirements_test.txt)
51+
pip install -q -r <(sed '/^tensorflow/d;/^keras/d' requirements_test.txt)
5352
pip install tensorflow==${{ matrix.tensorflow }}
5453
pip install keras==${{ matrix.keras }}
55-
pip install tensorflow-addons==${{ matrix.tf_addons }}
5654
pip list
5755
- name: Run Tests
5856
run: ./run_tests.sh ${{ matrix.framework }}

0 commit comments

Comments
 (0)