Skip to content

Commit

Permalink
Merge pull request #249 from philipperemy/latest_tf_aug23
Browse files Browse the repository at this point in the history
latest TF 2.13
  • Loading branch information
philipperemy authored Aug 7, 2023
2 parents 6e66e74 + 3a4e76b commit ae9790c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tcn/tcn.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import inspect
from typing import List
from typing import List # noqa

import tensorflow as tf
# pylint: disable=E0611,E0401
Expand Down
13 changes: 8 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = {py3}-tensorflow-{2.6.2,2.7.0,2.8.0,2.9.0}
envlist = {py3}-tensorflow-{2.7,2.8,2.9,2.10,2.11,2.12,2.13}

[testenv]
setenv =
Expand All @@ -8,10 +8,13 @@ deps = pytest
pylint
flake8
-rrequirements.txt
tensorflow-2.6.2: tensorflow==2.6.2
tensorflow-2.7.0: tensorflow==2.7.0
tensorflow-2.8.0: tensorflow==2.8.0
tensorflow-2.9.0: tensorflow==2.9.0rc2
tensorflow-2.7: tensorflow==2.7
tensorflow-2.8: tensorflow==2.8
tensorflow-2.9: tensorflow==2.9
tensorflow-2.10: tensorflow==2.10
tensorflow-2.11: tensorflow==2.11
tensorflow-2.12: tensorflow==2.12
tensorflow-2.13: tensorflow==2.13
changedir = tasks/
commands = pylint --disable=R,C,W,E1136 ../tcn
flake8 ../tcn --count --select=E9,F63,F7,F82 --show-source --statistics
Expand Down

0 comments on commit ae9790c

Please sign in to comment.