-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
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
DOC: Removing rpy2 dependencies, and converting examples using it to regular code blocks #23737
Conversation
I think it would be good to at least keep a redirect (there is some mechanism in conf.py for that), or a short stub referring to the rpy2 docs, to keep the url working (but can already remove it from the sidebar in that case). But as said on the issue, would also be fine with removing the dependencies but keeping the page with verbatim code blocks. |
Codecov Report
@@ Coverage Diff @@
## master #23737 +/- ##
==========================================
+ Coverage 92.25% 92.28% +0.03%
==========================================
Files 161 161
Lines 51383 51434 +51
==========================================
+ Hits 47404 47467 +63
+ Misses 3979 3967 -12
Continue to review full report at Codecov.
|
For the redirects, I see two problems:
Regarding adding Not sure what's best, but unless someone else want to do some work about it, I think it's better to leave things as they are and close this PR, or merge it without those things. |
That would be my preference. |
I agree here with @TomAugspurger and @jorisvandenbossche; let's remove the deps (as you have done), and change to code-blocks. |
doc/source/r_interface.rst
Outdated
|
||
from rpy2.robjects import r, pandas2ri | ||
pandas2ri.activate() | ||
>>> from rpy2.robjects import r, pandas2ri # doctest: +SKIP |
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.
why are those skips needed? Do we run doctests for the tutorial docs?
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.
I don't think we do now, but I thought it was better to skip in case we don't in the future, and also to make clear when we read that that those are not expected to run (besides not having the dependencies anymore, and the error in the CI doc build, there are future warnings, and not sure if something else).
@jorisvandenbossche are you happy merging with the doctest skips, or any reason why you'd prefer not to have them? |
…fixed * upstream/master: DOC: Removing rpy2 dependencies, and converting examples using it to regular code blocks (pandas-dev#23737) BUG: Fix dtype=str converts NaN to 'n' (pandas-dev#22564) DOC: update pandas.core.resample.Resampler.nearest docstring (pandas-dev#20381) REF/TST: Add more pytest idiom to parsers tests (pandas-dev#23810) Added support for Fraction and Number (PEP 3141) to pandas.api.types.is_scalar (pandas-dev#22952) DOC: Updating to_timedelta docstring (pandas-dev#23259)
…regular code blocks (pandas-dev#23737)
…regular code blocks (pandas-dev#23737)
git diff upstream/master -u -- "*.py" | flake8 --diff
Still under discussion (#20648 (comment)), but in this PR I'm removing the rpy2 documentation page, as I think that documentation should live in rpy2 as it's not pandas documentation, and at the moment we have 50 additional dependencies for a small page in which examples were broken for some versions (and no user complained about it afaik).