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.
2 parents 609b402 + 28f1c5b commit 0a030b9Copy full SHA for 0a030b9
.travis.yml
@@ -6,7 +6,8 @@ python:
6
sudo: false
7
install:
8
- pip install -U pip
9
- - pip install ".[test]" coveralls
+ - pip install -U --upgrade-strategy eager ".[test]" coveralls
10
+ - pip freeze
11
script:
12
- nosetests --with-coverage --cover-package traittypes traittypes
13
after_success:
setup.py
@@ -83,7 +83,9 @@
83
84
extras_require = setuptools_args['extras_require'] = {
85
'test': [
86
- 'numpy',
+ # TestIntArray.test_bad_values fails with numpy>=1.16.0
87
+ 'numpy<1.16.0',
88
+
89
'pandas',
90
'xarray',
91
'pytest', # traitlets[test] require this
0 commit comments