-
Notifications
You must be signed in to change notification settings - Fork 87
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
Unpinned sktime version #4214
Unpinned sktime version #4214
Conversation
Codecov Report
@@ Coverage Diff @@
## main #4214 +/- ##
=====================================
Coverage 99.7% 99.7%
=====================================
Files 349 349
Lines 38294 38294
=====================================
Hits 38174 38174
Misses 120 120
|
98f604d
to
a61443e
Compare
@@ -203,7 +203,6 @@ def test_feature_importance(ts_data): | |||
[ | |||
(True, False, False, False, False, False), | |||
(False, True, True, False, False, True), | |||
(False, True, True, False, False, False), |
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.
We deleted this test case because sktime depreciated integer indexes
Might need to be addressed in either this PR or another one but I think we also need to cap the pandas version for conda for now. Here's a passing build with 1.5.3 while this build fails with 2.0.2. We can cap pandas in the EvalML repo or in the Conda recipe on this line. |
Its only passing in the other tests because |
@jeremyliweishih I agree that we should bump it up, but I think we should it in a follow up issue. It would keep the pandas 2.0 work separate from this PR. Should we open another PR for the pandas fixes only, merge that in, then rebase and get this in? |
b9e0744
to
595edfc
Compare
3cdf786
to
fe1acd2
Compare
@@ -25,7 +25,7 @@ outputs: | |||
- setuptools ==58.0.4 | |||
run: | |||
- numpy >=1.21.0 | |||
- pandas >=1.5.0 | |||
- pandas >=1.5.0, <2.0.0 |
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.
Can you file an issue to unpin if we don't already have one?
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.
Do mention that we were not supporting it before as pip would not install > 2.0
Resolves: #4138