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