From c920becc09ef24f99f3359e6c4312b2957a734b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20R=C3=A9my?= Date: Sat, 30 Sep 2023 12:51:44 +0700 Subject: [PATCH] TF 2.14 (#69) * TF 2.14 * Update tox.ini * TF 2.14 * 3.11 * 3.10 --- .github/workflows/ci.yml | 2 +- README.md | 2 +- tox.ini | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2e0f36d..4a065a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: strategy: max-parallel: 4 matrix: - python-version: [ "3.8", "3.9", "3.10" ] + python-version: [ "3.9", "3.10" ] steps: - uses: actions/checkout@v3 diff --git a/README.md b/README.md index e0c3f49..a5f9db9 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Attention Layer for Keras. Supports the score functions of Luong and Bahdanau. -Tested with Tensorflow 2.6, 2.7, 2.8, 2.9, 2.10, 2.11, 2.12 and 2.13 (Jul 25, 2023). +Tested with Tensorflow 2.8, 2.9, 2.10, 2.11, 2.12, 2.13 and 2.14 (Sep 26, 2023).

diff --git a/tox.ini b/tox.ini index 6096b1c..d7e12d5 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = {py3}-tensorflow-{2.8,2.9,2.10,2.11,2.12,2.13} +envlist = {py3}-tensorflow-{2.8,2.9,2.10,2.11,2.12,2.13,2.14} [testenv] setenv = @@ -13,6 +13,7 @@ deps = -rexamples/examples-requirements.txt tensorflow-2.11: tensorflow==2.11 tensorflow-2.12: tensorflow==2.12 tensorflow-2.13: tensorflow==2.13 + tensorflow-2.14: tensorflow==2.14 changedir = examples commands = pylint --disable=R,C,W,E1136,E0401 ../attention python example-attention.py