Skip to content

Commit 895f8bb

Browse files
authored
Merge pull request #24 from cms-ml/fix_tests
Add test for tf 2.18.0.
2 parents c99b79d + affc21b commit 895f8bb

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

.github/workflows/deploy_images.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ on:
1717
- py37
1818
- py38
1919
- py39
20+
- py39_base
2021
- py310
2122
- py311
2223
- py311-cuda
@@ -90,7 +91,7 @@ jobs:
9091
push_image: ${{ github.event.inputs.push_image == 'true' }}
9192

9293
py39_base:
93-
if: ${{ github.event.inputs.specific_job == 'all' || contains(github.event.inputs.specific_job, 'py39') }}
94+
if: ${{ github.event.inputs.specific_job == 'all' || contains(github.event.inputs.specific_job, 'py39_base') }}
9495
runs-on: ubuntu-latest
9596
steps:
9697
- name: Checkout 🛎️

.github/workflows/lint_and_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
# scan tf versions
3535
- {tag: "3.9_base", tf: "2.5.3"}
3636
- {tag: "3.9_base", tf: "2.6.5"}
37-
- {tag: "3.9_base", tf: "2.11.1"}
3837
- {tag: "3.9_base", tf: "2.12.1"}
3938
- {tag: "3.9_base", tf: "2.13.0"}
4039
- {tag: "3.9_base", tf: "2.16.1"}
40+
- {tag: "3.9_base", tf: "2.18.0"}
4141
name: test (image=${{ matrix.versions.tag }}, tf=${{ matrix.versions.tf }})
4242
steps:
4343
- name: Checkout 🛎️

requirements_dev.txt

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
flake8~=7.0
2-
flake8-commas~=2.1.0
3-
flake8-quotes~=3.3.2
4-
pytest-cov~=5.0.0
1+
flake8~=7.1.1;python_version>="3.8"
2+
flake8~=5.0.0;python_version<"3.8"
3+
flake8-commas~=2.1.0;python_version<"3.8"
4+
flake8-commas~=4.0.0;python_version>="3.8"
5+
flake8-quotes~=3.4.0
6+
pytest~=7.4.4;python_version<"3.8"
7+
pytest~=8.3.2;python_version>="3.8"
8+
pytest-cov~=4.1.0;python_version<"3.8"
9+
pytest-cov~=5.0.0;python_version>="3.8"
510
pytest-xdist~=3.4.0

0 commit comments

Comments
 (0)