Skip to content
This repository was archived by the owner on Apr 10, 2024. It is now read-only.

Commit 0b55f93

Browse files
committedJul 13, 2018
Move explicit tensorflow dependency from CI config to tox config
1 parent c4bf34a commit 0b55f93

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed
 

‎.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ python:
55
install:
66
- pip install -U pip wheel
77
- pip install python-coveralls
8-
- pip install tensorflow
98
- pip install tox-travis
109
script:
1110
- tox

‎setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424

2525
extras = {
2626
"test": test_deps,
27-
"tf": ["tensorflow>=1.0.0"],
28-
"tf_gpu": ["tensorflow-gpu>=1.0.0"],
27+
"tf": ["tensorflow>=1.6.0"],
28+
"tf_gpu": ["tensorflow-gpu>=1.6.0"],
2929
}
3030

3131
setup(

‎tox.ini

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
envlist = py{27,36}
33

44
[testenv]
5-
deps = .[test]
5+
deps =
6+
tensorflow
7+
.[test]
68
commands = coverage run --source lucid -m py.test
79

810
[pytest]

0 commit comments

Comments
 (0)
This repository has been archived.