-
Notifications
You must be signed in to change notification settings - Fork 416
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
Removals of all deprecated stuff #1286
Conversation
This really should have been done when we deprecated it. Oops.
More places where degC became degrees_Celsius. Since this isn't an important part of the test, just set the label and be done.
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.
Here's the main thing you appeared to have missed in xarray.py:
require_1d_coord = ['time', 'vertical'] # TODO: Add 'y', 'x' in v1.0
should be updated to
require_1d_coord = ['time', 'vertical', 'y', 'x']
This should then allow you to modify that last test to check for AttributeError
on accessing x
or y
, instead of actually accessing them according to the old behavior.
Also, could you update the docstrings for .y
and .x
?
67eeec7
to
1023f12
Compare
That make sense. I think I got it now. |
1023f12
to
38d4c56
Compare
…ta#1112) This makes their behavior standard and eliminates the old behavior.
38d4c56
to
a160534
Compare
This got dropped in the repo reorganization, so that only testing.py is included.
Description Of Changes
Remove everything we said was going away in 1.0:
test_xarray.py
passes and that makes me nervousfuture.py
into their home (leavefuture.py
empty)This DOES NOT remove
dim_order
which is something else that needs to die in 1.0.Checklist