Show More
@@ -10,6 +10,7 b' before_install:' | |||||
10 | - git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels |
|
10 | - git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels | |
11 | - 'if [[ $GROUP != js* ]]; then COVERAGE=""; fi' |
|
11 | - 'if [[ $GROUP != js* ]]; then COVERAGE=""; fi' | |
12 | install: |
|
12 | install: | |
|
13 | - pip install "setuptools>=18.5" | |||
13 | - pip install -f travis-wheels/wheelhouse -e file://$PWD#egg=ipython[test] |
|
14 | - pip install -f travis-wheels/wheelhouse -e file://$PWD#egg=ipython[test] | |
14 | - pip install codecov |
|
15 | - pip install codecov | |
15 | script: |
|
16 | script: |
@@ -172,6 +172,9 b" needs_setuptools = set(('develop', 'release', 'bdist_egg', 'bdist_rpm'," | |||||
172 |
|
172 | |||
173 | if len(needs_setuptools.intersection(sys.argv)) > 0: |
|
173 | if len(needs_setuptools.intersection(sys.argv)) > 0: | |
174 | import setuptools |
|
174 | import setuptools | |
|
175 | v = tuple(int(x) for x in setuptools.__version__.split('.')) | |||
|
176 | if v < (18,5): | |||
|
177 | raise ValueError('Setuptools version >=18.5 is required, found: %s'%setuptools.__version__) | |||
175 |
|
178 | |||
176 | # This dict is used for passing extra arguments that are setuptools |
|
179 | # This dict is used for passing extra arguments that are setuptools | |
177 | # specific to setup |
|
180 | # specific to setup | |
@@ -191,6 +194,7 b' extras_require = dict(' | |||||
191 | nbconvert = ['nbconvert'], |
|
194 | nbconvert = ['nbconvert'], | |
192 | ) |
|
195 | ) | |
193 | install_requires = [ |
|
196 | install_requires = [ | |
|
197 | 'setuptools>=18.5' | |||
194 | 'decorator', |
|
198 | 'decorator', | |
195 | 'pickleshare', |
|
199 | 'pickleshare', | |
196 | 'simplegeneric>0.8', |
|
200 | 'simplegeneric>0.8', |
General Comments 0
You need to be logged in to leave comments.
Login now