From 8b8a7eb6898ac56f6304d8940987534610faf414 Mon Sep 17 00:00:00 2001 From: keisen Date: Thu, 7 May 2020 17:50:51 +0900 Subject: [PATCH] Add supporting Python3.8+ --- .travis.yml | 4 ++++ setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d61eb71..6ce0ccb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,10 @@ env: - TF_VERSION=2.0.1 TF_KERAS_VIS_MAX_STEPS=3 - TF_VERSION=2.1.0 TF_KERAS_VIS_MAX_STEPS=3 - TF_VERSION=2.2.0 TF_KERAS_VIS_MAX_STEPS=3 +jobs: + include: + - python: 3.8 + env: TF_VERSION=2.2.0 TF_KERAS_VIS_MAX_STEPS=3 install: - pip install -U pip - pip install -U --force-reinstall -e .[development,examples] tensorflow==$TF_VERSION diff --git a/setup.py b/setup.py index 0bebd7d..b9aabc1 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], - python_requires='>=3.5, <3.8', + python_requires='>=3.5, <=3.8', install_requires=['numpy', 'scipy', 'imageio', 'pillow'], extras_require={ 'development':