-
-
Notifications
You must be signed in to change notification settings - Fork 18k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CI: use conda-forge on 3.6 build #15668
Conversation
Codecov Report
@@ Coverage Diff @@
## master #15668 +/- ##
==========================================
- Coverage 91.03% 91.01% -0.03%
==========================================
Files 143 143
Lines 49382 49382
==========================================
- Hits 44957 44946 -11
- Misses 4425 4436 +11
Continue to review full report at Codecov.
|
pandas/tests/sparse/test_frame.py
Outdated
@@ -1132,7 +1132,7 @@ def test_isnotnull(self): | |||
@pytest.mark.parametrize('dtype', [object, bool, int, float, np.uint16]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You might as well push something to remove this object. 😛
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we just not test this at all (object I mean)? I don't actually have scipy 0.19.0 installed, so can't really test this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For what I quickly tested (0.18.1) only simple methods and properties, like .tocoo()
, .todok()
, .dtype
, .shape
work with spmatrices of object dtype. While we do preserve this dtype if encountered, I see little harm in skipping it altogether.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok separated out the object
test. skips on 0.19.0.
No description provided.