File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -24,11 +24,15 @@ jobs:
2424 with :
2525 environment-name : test-env
2626 create-args : >-
27- python=3.13
27+ python
2828 pip
29+ pandas
30+ numpy
31+ xarray
32+ pytest
2933
3034 - name : Install
31- run : pip install eager ".[test]" coveralls pytest-cov
35+ run : pip install eager . coveralls pytest-cov
3236
3337 - name : Test coverage
3438 run : pytest --cov=traittypes traittypes
Original file line number Diff line number Diff line change 8383
8484extras_require = setuptools_args ['extras_require' ] = {
8585 'test' : [
86- # TestIntArray.test_bad_values fails with numpy>=1.16.0
87- 'numpy<1.16.0' ,
88-
86+ 'numpy' ,
8987 'pandas' ,
9088 'xarray' ,
9189 'pytest' , # traitlets[test] require this
Original file line number Diff line number Diff line change 1717
1818
1919class IntArrayTrait (HasTraits ):
20- value = Array ().tag (dtype = np .int )
20+ value = Array ().tag (dtype = np .int32 )
2121
2222
2323class TestIntArray (TraitTestBase ):
2424 """
25- Test dtype validation with a ``dtype=np.int ``
25+ Test dtype validation with a ``dtype=np.int32 ``
2626 """
2727 obj = IntArrayTrait ()
2828
You can’t perform that action at this time.
0 commit comments