We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b6083c commit f7a116cCopy full SHA for f7a116c
2 files changed
.travis.yml
@@ -10,8 +10,8 @@ sudo: false
10
install:
11
- |
12
pip install --upgrade setuptools pip
13
- python setup.py bdist_wheel && pip install --pre dist/*.whl
14
- pip install ipykernel[test] nose-timer
+ python setup.py bdist_wheel
+ pip install --pre dist/*.whl ipykernel[test]
15
16
if [[ "$TRAVIS_PYTHON_VERSION" == "3.6" || "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
17
pip install matplotlib
setup.py
@@ -101,7 +101,8 @@
101
]
102
103
extras_require = setuptools_args['extras_require'] = {
104
- 'test:python_version=="2.7"': ['mock', 'nose_warnings_filters'],
+ 'test:python_version=="2.7"': ['mock'],
105
+ 'test': ['nose_warnings_filters', 'nose-timer'],
106
}
107
108
if 'setuptools' in sys.modules:
0 commit comments