-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
DOC/BLD: fix annoying sphinx bugs #3722
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
Conversation
this is in...thanks! built very nicey |
crap...still a few more...that ok? can submit a separate pr, but i guess if they are building nicely for u that's good. i still get deprecation warnings about reset_printoptions which can easily be fixed |
oh really....hmm..let me try to clean and build again (but I didn't see that before).... why don't you put it in one that changes the warning on the install page to basically say install 4.02? |
ok will do |
running test suite now to make sure i didn't "overvim" everything by using a regex and |
oh darn it all to heck. now i get warnings about |
screw it i am just running |
no...some of these are just warnings printed out by various whatsnews, so ok (on the Timeseries broadcasting)...maybe set_printoptions (as that is deprecated) |
i'm getting ipython ext attrerrors now that is def a bug. of course the file name contains a hex value so that's useful for tracking it down |
this doesn't work because from datetime import datetime, timedelta
s = Series(date_range('2012-1-1', periods=3, freq='D'))
td = Series([ timedelta(days=i) for i in range(3) ])
df = DataFrame(dict(A = s, B = td))
y = s - s[0]
y
y.apply(lambda x: x.item().total_seconds()) also, y.apply(lambda x: x) should return |
only python's native |
no...that's ok...its meant for numpy 1.6.2 (if you look at the docs they build ok), I had to put a note that the syntax is diff in 1.7; I didn't want to put a numpy version detector, seemed like too much magic |
hm maybe could be a sphinx argument tho to the ipython directive like |
sure.....(and the 1.7 replacements for those 2 statements are in the note....) this is because numpy changed how timedelta64[ns] works in 1.7 vs. 1.6.2 |
cool sort of flew through and didn't see the note. i was just using |
I'll have to say though, that I do sometimes catch bugs because the docs throw build errors! (and then I make that a test)....so its good to build them occasionally |
FYI...all of your html stuff building nicely now on public docs...I threw in some links back to the docs (will buidl tomorrow as I just pushed it)....I think all of your most recent changes are in there though |
sweet thanks |
alright i've squashed as many of these warnings as i can. i've converted all of the uses of |
were they in the main docs? or in whatsnew? |
main docs |
and in a few tests |
with the exception of a warning from a call to |
no that's good |
pr is up |
closes #3721. cc @jreback