-
Notifications
You must be signed in to change notification settings - Fork 653
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
FIX-#4370: Fix broken docstring links #4375
Conversation
Codecov Report
@@ Coverage Diff @@
## master #4375 +/- ##
==========================================
+ Coverage 82.91% 90.02% +7.10%
==========================================
Files 219 219
Lines 17927 17924 -3
==========================================
+ Hits 14865 16136 +1271
+ Misses 3062 1788 -1274
📣 Codecov can now indicate which changes are the most critical in Pull Requests. Learn more |
c18aaf3
to
5d3eb5c
Compare
.github/workflows/push-to-master.yml
Outdated
push: | ||
branches: | ||
- master | ||
on: pull_request |
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.
Will be returned back after changes are approved (on
parameter should be set to pull_request
value to ensure that test docs
job from push-to-master.yml
config is fixed).
PR is ready for review. P.S. PR will remain in the draft state untill changes are approved and changes of CI workflow are reverted. |
modin/pandas/general.py
Outdated
@@ -370,12 +370,32 @@ def unique(values): # noqa: PR01, RT01, D200 | |||
return Series(values).unique() | |||
|
|||
|
|||
@_inherit_docstrings(pandas.value_counts, apilink="pandas.value_counts") | |||
# adding docstring since pandas docs doesn't have web section for this function |
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.
Please submit a question on this in pandas GH. Same is for other related functions.
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, question was submitted pandas-dev/pandas#46749.
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.
pandas answered that these functions are considered to be removed in the future releases, so i think we can leave docstrings until these functions are removed from pandas api to drop it in Modin too.
0dbffc2
to
2faeac6
Compare
Signed-off-by: alexander3774 <myskova977@gmail.com>
Signed-off-by: alexander3774 <myskova977@gmail.com>
Co-authored-by: Alexey Prutskov <lehaprutskov@gmail.com> Signed-off-by: alexander3774 <myskova977@gmail.com>
Signed-off-by: alexander3774 <myskova977@gmail.com>
Co-authored-by: Alexey Prutskov <lehaprutskov@gmail.com>
Signed-off-by: alexander3774 <myskova977@gmail.com>
ce0827a
to
6306ac3
Compare
LGTM! Triggered CI. |
test-ray-client is failing now and tracked by #4383. |
Signed-off-by: alexander3774 <myskova977@gmail.com>
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.
LGTM!
Yes, i see. Target P.S. please trigger CI. |
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.
@alexander3774, LGTM, thanks!
Signed-off-by: alexander3774 myskova977@gmail.com
What do these changes do?
This PR fixes failed
test docs
CI job.flake8 modin/ asv_bench/benchmarks scripts/doc_checker.py
black --check modin/ asv_bench/benchmarks scripts/doc_checker.py
git commit -s
docs/development/architecture.rst
is up-to-date