From d9e9e4179f53981638867e0b5511a8dc409b9e43 Mon Sep 17 00:00:00 2001 From: Mikko Kotila Date: Sat, 25 Jan 2020 16:13:26 +0200 Subject: [PATCH 1/3] CI Cleanup --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2e7ad744..a4b874a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,8 +9,8 @@ jobs: strategy: max-parallel: 9 matrix: - python-version: [3.5, 3.6, 3.7] - os: [ubuntu-latest, windows-latest, macos-latest] + python-version: [3.6, 3.7] + os: [ubuntu-latest, macos-latest] steps: - uses: actions/checkout@v1 From b3b4ef98633acc4325a793df7549a0382a9ea30a Mon Sep 17 00:00:00 2001 From: Mikko Kotila Date: Sat, 25 Jan 2020 16:20:08 +0200 Subject: [PATCH 2/3] changed tensorflow version --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a4b874a9..37da0eb0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: - name: Tests run: | export MPLBACKEND=agg - pip install tensorflow + pip install tensorflow==2.1-rc2 pip install coveralls coverage run --source=talos ./test_script.py - name: Coverage From 79bd795ba1b682de0fba6d102224ba519e7986ad Mon Sep 17 00:00:00 2001 From: Mikko Kotila Date: Sat, 25 Jan 2020 20:25:24 +0200 Subject: [PATCH 3/3] changed TensorFlow version to 1.15.0 for legacy --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37da0eb0..7c38bba6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: - name: Tests run: | export MPLBACKEND=agg - pip install tensorflow==2.1-rc2 + pip install tensorflow==1.15.0 pip install coveralls coverage run --source=talos ./test_script.py - name: Coverage