-
-
Notifications
You must be signed in to change notification settings - Fork 566
compat: Remove direct dependency on pandas #8236
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
base: main
Are you sure you want to change the base?
Conversation
ec90fae to
87c744f
Compare
87c744f to
4dbaf90
Compare
|
Great start, though we need to work on removing the dependency in bokeh first. |
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #8236 +/- ##
===========================================
+ Coverage 70.20% 81.75% +11.55%
===========================================
Files 347 348 +1
Lines 54092 54131 +39
===========================================
+ Hits 37973 44255 +6282
+ Misses 16119 9876 -6243 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
| assert location.search == "?dataframe=%5B%7B%22x%22%3A+1%7D%5D" | ||
|
|
||
| def test_location_sync_to_dataframe(location, dataframe): | ||
| pd = pytest.importorskip("pandas") |
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 we convert these to decorators, i.e.:
pd_available = pytest.mark.skipif(pd is None, reason="requires pandas")
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.
Sure, will do this before a merge. For now this is easier to do.
Really early. This is to test-run our testsuite without having Pandas as a direct dependency.