From d63cec5fadf4c69ebf7d20a4a2cd65344c0082d5 Mon Sep 17 00:00:00 2001 From: Sayantan Das <36279638+ucalyptus@users.noreply.github.com> Date: Sun, 12 Apr 2020 17:19:34 +0530 Subject: [PATCH 1/6] Update .travis.yml --- .travis.yml | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/.travis.yml b/.travis.yml index b1fa940..d216837 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,14 @@ -sudo: true -dist: trusty +os: linux -language: python +language: python -os: - - linux +python: + - "2.7" + - "3.5" env: - matrix: - - TASK=lint - - TASK=nosetests + - TASK=lint + - TASK=nosetests cache: apt: true @@ -28,11 +27,10 @@ addons: - python3-numpy - python3-scipy -python: - - "2.7" - - "3.4" +before_install: + - pip install pylint + - pylint skflow -install: - - source scripts/travis_install.sh +install: source scripts/travis_install.sh script: source scripts/run_tests.sh From 3c136fda385a41a957af69091806cabb55794db2 Mon Sep 17 00:00:00 2001 From: Sayantan Das <36279638+ucalyptus@users.noreply.github.com> Date: Sun, 12 Apr 2020 17:21:58 +0530 Subject: [PATCH 2/6] Bump to 3.5 --- scripts/travis_install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/travis_install.sh b/scripts/travis_install.sh index 76ea466..bb75ecf 100755 --- a/scripts/travis_install.sh +++ b/scripts/travis_install.sh @@ -19,8 +19,8 @@ case "$TASK" in "2.7") virtualenv --system-site-packages testenv ;; - "3.4") - virtualenv -p python3.4 --system-site-packages testenv + "3.5") + virtualenv -p python3.5 --system-site-packages testenv ;; esac source testenv/bin/activate @@ -41,8 +41,8 @@ case "$TASK" in "2.7") TENSORFLOW_PACKAGE_URL="https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0rc0-cp27-none-linux_x86_64.whl" ;; - "3.4") - TENSORFLOW_PACKAGE_URL="https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0rc0-cp34-cp34m-linux_x86_64.whl" + "3.5") + TENSORFLOW_PACKAGE_URL="https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.2.0rc0-cp35-cp35m-linux_x86_64.whl" ;; esac ;; From 58a957d495a90867fd62e86516b455306d292c8d Mon Sep 17 00:00:00 2001 From: Sayantan Das <36279638+ucalyptus@users.noreply.github.com> Date: Sun, 12 Apr 2020 17:42:35 +0530 Subject: [PATCH 3/6] Added 3.8 run support --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index d216837..59c386c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ language: python python: - "2.7" - "3.5" + - "3.8" env: - TASK=lint From 7eafc4fedf5cb16d9a45b44a8e420d5850aa8080 Mon Sep 17 00:00:00 2001 From: Sayantan Das <36279638+ucalyptus@users.noreply.github.com> Date: Sun, 12 Apr 2020 17:49:00 +0530 Subject: [PATCH 4/6] Removing 3.8 as not supported yet --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 59c386c..d216837 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,6 @@ language: python python: - "2.7" - "3.5" - - "3.8" env: - TASK=lint From a05fbf5e9b44f417fb4973c0483bcdc24f2989f3 Mon Sep 17 00:00:00 2001 From: Sayantan Das <36279638+ucalyptus@users.noreply.github.com> Date: Sun, 12 Apr 2020 18:58:27 +0530 Subject: [PATCH 5/6] 3.7 support --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index d216837..9d62ba5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ language: python python: - "2.7" - "3.5" + - "3.7" env: - TASK=lint From 34bf454a04ff460ff2ea093e1b633c2c46681b90 Mon Sep 17 00:00:00 2001 From: Sayantan Das <36279638+ucalyptus@users.noreply.github.com> Date: Sun, 12 Apr 2020 19:00:26 +0530 Subject: [PATCH 6/6] 3.7 support -tf1.13.1 --- scripts/travis_install.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/travis_install.sh b/scripts/travis_install.sh index bb75ecf..9955d7e 100755 --- a/scripts/travis_install.sh +++ b/scripts/travis_install.sh @@ -22,6 +22,9 @@ case "$TASK" in "3.5") virtualenv -p python3.5 --system-site-packages testenv ;; + "3.7") + virtualenv -p python3.7 --system-site-packages testenv + ;; esac source testenv/bin/activate @@ -44,6 +47,9 @@ case "$TASK" in "3.5") TENSORFLOW_PACKAGE_URL="https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.2.0rc0-cp35-cp35m-linux_x86_64.whl" ;; + "3.7") + TENSORFLOW_PACKAGE_URL="https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.13.1-cp37-cp37m-linux_x86_64.whl" + ;; esac ;; "osx")