Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Fix1: End of Life Updates #191

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 12 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
sudo: true
dist: trusty
os: linux

language: python
language: python

os:
- linux
python:
- "2.7"
- "3.5"
- "3.7"

env:
matrix:
- TASK=lint
- TASK=nosetests
- TASK=lint
- TASK=nosetests

cache:
apt: true
Expand All @@ -28,11 +28,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
14 changes: 10 additions & 4 deletions scripts/travis_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ 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
;;
"3.7")
virtualenv -p python3.7 --system-site-packages testenv
;;
esac
source testenv/bin/activate
Expand All @@ -41,8 +44,11 @@ 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"
;;
"3.7")
TENSORFLOW_PACKAGE_URL="https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.13.1-cp37-cp37m-linux_x86_64.whl"
;;
esac
;;
Expand Down