Skip to content

Commit 30edd9b

Browse files
committed
fix ci
Signed-off-by: xadupre <[email protected]>
1 parent c27e246 commit 30edd9b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/actions/keras_application_test/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ runs:
5555
pip install numpy==1.19.0
5656
else
5757
pip install transformers
58-
if [[ "${{ inputs.tf_version }}" != "2.13" && "${{ inputs.tf_version }}" != "2.9" ]]; then
58+
if [[ "${{ inputs.tf_version }}" != "2.13.0" && "${{ inputs.tf_version }}" != "2.9.0" ]]; then
5959
echo "-- install-1 TF-KERAS ${{ inputs.tf_version }}"
6060
pip install tf_keras==${{ inputs.tf_version }} tensorflow==${{ inputs.tf_version }}
6161
else

.github/actions/keras_unit_test/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ runs:
3434
if [[ ${{ inputs.tf_version }} == 1.* ]]; then
3535
pip install numpy==1.19.0
3636
else
37-
if [[ "${{ inputs.tf_version }}" != "2.13" && "${{ inputs.tf_version }}" != "2.9" ]]; then
37+
if [[ "${{ inputs.tf_version }}" != "2.13.0" && "${{ inputs.tf_version }}" != "2.9.0" ]]; then
3838
echo "-- install-2 TF-KERAS ${{ inputs.tf_version }}"
3939
pip install tf_keras==${{ inputs.tf_version }} tensorflow==${{ inputs.tf_version }}
4040
else

tests/utils/setup_test_env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pip install onnx==$ONNX_VERSION onnxruntime==$ORT_VERSION onnxruntime-extensions
2222
if [[ $TF_VERSION == 1.* ]]; then
2323
pip install numpy==1.19.0
2424
else
25-
if [[ "$TF_VERSION" != "2.13" && "$TF_VERSION" != "2.9" ]]; then
25+
if [[ "$TF_VERSION" != "2.13.0" && "$TF_VERSION" != "2.9.0" ]]; then
2626
echo "-- install-3 TF-KERAS ${{ inputs.tf_version }}"
2727
pip install tf_keras==$TF_VERSION
2828
else

0 commit comments

Comments
 (0)