Skip to content

Commit

Permalink
⬆️ TensorFlow CI versions. (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamHillier authored Sep 7, 2021
1 parent cb5d305 commit 4359699
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/[email protected]
with:
python-version: 3.7
python-version: 3.9
- name: Install project dependencies
run: |
pip install tensorflow-cpu==2.4.1
pip install tensorflow-cpu==2.6.0
pip install -e .[test]
- name: Run Flake8
run: flake8
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
tf-version: [1.14.0, 1.15.5, 2.0.4, 2.1.3, 2.2.2, 2.3.2, 2.4.1, 2.5.0]
tf-version: [1.14.0, 1.15.5, 2.0.4, 2.1.4, 2.2.3, 2.3.4, 2.4.3, 2.5.1, 2.6.0]
python-version: [3.7]
include:
- tf-version: 2.4.1
- tf-version: 2.4.3
python-version: 3.6
- tf-version: 2.4.1
- tf-version: 2.4.3
python-version: 3.8
- tf-version: 2.5.0
- tf-version: 2.5.1
python-version: 3.9

steps:
Expand All @@ -35,7 +35,7 @@ jobs:
if: matrix.tf-version == '1.15.5' || matrix.tf-version == '2.0.4'
- name: Fix tfds for TF 2.1
run: pip install tensorflow_datasets==4.2.0
if: matrix.tf-version == '2.1.3'
if: matrix.tf-version == '2.1.4'
- name: Install dependencies
run: |
pip install tensorflow-cpu==${{matrix.tf-version}} || pip install tensorflow==${{matrix.tf-version}}
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ exclude =
**/*_test.py
# Keep going past errors to analyse as many files as possible.
keep_going = True
python_version = 3.7
python_version = 3.9

0 comments on commit 4359699

Please sign in to comment.