Skip to content
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): extension array indexers #9671

Open
wants to merge 187 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
187 commits
Select commit Hold shift + click to select a range
7b5f323
implement default_precision_timestamp, refactor coding/times.py and c…
kmuehlbauer Oct 10, 2024
8784f33
align tests with new time resolution behaviour
kmuehlbauer Oct 10, 2024
b45ab23
timedelta decoding, fsspec handling
kmuehlbauer Oct 10, 2024
39086ef
fixes in coding/times.py
kmuehlbauer Oct 13, 2024
df49a40
add docs on time coding
kmuehlbauer Oct 13, 2024
adb8ca3
attempt fixing doc tests
kmuehlbauer Oct 13, 2024
266b1ed
fix issue where out-of-bounds floating point values slipped in the pr…
kmuehlbauer Oct 14, 2024
6d5f13b
convert to UTC first before stripping of tz in _unpack_time_units_and…
kmuehlbauer Oct 14, 2024
5d68bfe
reorganize pandas compatibility code, remove unneeded code, attempt t…
kmuehlbauer Oct 14, 2024
07bba69
another attempt to finally fix mypy
kmuehlbauer Oct 14, 2024
6e7f0bb
refactor out _check_date_is_after_shift
kmuehlbauer Oct 14, 2024
b4a49bb
refactor out _maybe_strip_tz_from_timestamp
kmuehlbauer Oct 14, 2024
2e1ff4f
more refactoring in coding.times.py
kmuehlbauer Oct 14, 2024
d5a7da0
more refactoring in coding.times.py
kmuehlbauer Oct 14, 2024
821b68d
minor fix in time-coding.rst
kmuehlbauer Oct 14, 2024
d066edf
set default resolution to "s", which actually means, use pandas lowes…
kmuehlbauer Oct 14, 2024
ed22da1
Add section for default units, fix options
kmuehlbauer Oct 14, 2024
8bf23f4
attempt to fix typing
kmuehlbauer Oct 14, 2024
c3a2b39
attempt to fix typing
kmuehlbauer Oct 14, 2024
3c44aed
fix scalar datetime/timedelta
kmuehlbauer Oct 15, 2024
48be73a
fix user docs
kmuehlbauer Oct 15, 2024
7ac9983
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 18, 2024
d86ad04
Fix variable tests, mostly datetime/timedelta is inittialized with us…
kmuehlbauer Oct 18, 2024
b5d0795
revert changes in _possible_convert_objects, this needs to be checked…
kmuehlbauer Oct 18, 2024
60324f0
fix doc link
kmuehlbauer Oct 18, 2024
c2bc4df
(fix): allow all extension array data types in pandas adapters
ilan-gold Oct 23, 2024
84569bc
(fix): dataframes have no `array` attr
ilan-gold Oct 23, 2024
90e390d
(fix): allow chunked numpy extension arrays because of `test_pandas_a…
ilan-gold Oct 24, 2024
7c32bd0
(fix): dtypes for `PandasIndex`
ilan-gold Oct 24, 2024
795ecf6
(chore): remove test for unnecessary conversion
ilan-gold Oct 24, 2024
8eca6e9
(revert): don't let through so much in `as_compatible_data`
ilan-gold Oct 24, 2024
fb91812
(fix): account for series -> numpy conversions
ilan-gold Oct 25, 2024
a06f2b1
(fix): ensure dtype check is for numpy type
ilan-gold Oct 25, 2024
14027e8
(fix): convert pandas `IntervalArray`
ilan-gold Oct 25, 2024
a47a96f
Merge branch 'main' into ig/fix_extension_indexer
ilan-gold Oct 25, 2024
6f2861a
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Nov 8, 2024
1f07500
Apply suggestions from code review
kmuehlbauer Nov 8, 2024
798b444
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Nov 8, 2024
f487599
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Nov 16, 2024
20d6c9d
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Nov 16, 2024
7391948
remove outdated description
kmuehlbauer Nov 16, 2024
308091c
use set instead list
kmuehlbauer Nov 16, 2024
5f40b4e
remove global option
kmuehlbauer Nov 16, 2024
2a65d8d
mypy thinks `unit` is Literal, because the pandas-stubs suggest so, b…
kmuehlbauer Nov 17, 2024
43f7d61
ignore mypy arg-type
kmuehlbauer Nov 17, 2024
59934b9
fix docstring of `default_precision_timestamp`
kmuehlbauer Nov 17, 2024
a01f9f3
add 'time_unit'-kwarg to decode_cf and descendent functions with "ns"…
kmuehlbauer Nov 17, 2024
8b91128
fix tests
kmuehlbauer Nov 17, 2024
0e351ca
fix more tests
kmuehlbauer Nov 17, 2024
07a8e9c
fix docstring
kmuehlbauer Nov 17, 2024
2be5739
use pd.Timestamp(np.datetime64(cftime)) to convert from cftime to numpy
kmuehlbauer Nov 17, 2024
b9d0a8e
use dt = np.datetime64(cftime.isoformat()) to convert from cftime to …
kmuehlbauer Nov 18, 2024
08afc3b
fix time-coding.rst
kmuehlbauer Nov 18, 2024
edc55e1
use us in to_datetimeindex
kmuehlbauer Nov 18, 2024
bffe919
revert back to us for datetimeindex tests
kmuehlbauer Nov 18, 2024
150b982
estimate fitting resolution for floating point values, when decoding …
kmuehlbauer Nov 18, 2024
7113ceb
add test
kmuehlbauer Nov 18, 2024
7f47f0b
refactor floating point decoding
kmuehlbauer Nov 18, 2024
512808d
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Nov 18, 2024
63c83f4
simplify recursive function, update tests
kmuehlbauer Nov 18, 2024
0efbbeb
more refactoring, update tests
kmuehlbauer Nov 19, 2024
2910250
add fixture, apply fixture to more tests.
kmuehlbauer Nov 19, 2024
57d8d72
update time-coding.rst
kmuehlbauer Nov 19, 2024
5333240
fix typing
kmuehlbauer Nov 19, 2024
6f35c81
try to fix test, remove stale print
kmuehlbauer Nov 19, 2024
d0c17a4
another attempt to fix test
kmuehlbauer Nov 19, 2024
b2b6bb1
debug failing test
kmuehlbauer Nov 19, 2024
5dbc8a7
refactor cftime fallback in datetime decoding
kmuehlbauer Nov 21, 2024
be0d3e0
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Nov 21, 2024
f95408a
fix merge-collission
kmuehlbauer Nov 21, 2024
609e15c
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Nov 21, 2024
ec7f165
use CFDatetimeCoder instance to transport unit/use_cftime
kmuehlbauer Nov 22, 2024
1f1cf1c
decode_times with CFDatetimeCoder
kmuehlbauer Nov 25, 2024
14b1a88
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Nov 25, 2024
05627dd
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Nov 25, 2024
e7cbf3a
fix mypy, warning/error
kmuehlbauer Nov 26, 2024
fc87e04
api, docs, docstrings
kmuehlbauer Nov 26, 2024
9ae645e
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Nov 26, 2024
6e3ca57
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Nov 27, 2024
277d1c6
docs, whats-new.rst
kmuehlbauer Nov 27, 2024
81a9d94
fix whats-new.rst
kmuehlbauer Nov 27, 2024
be8642f
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Nov 27, 2024
f3f62e5
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Dec 2, 2024
c07df41
Merge remote-tracking branch 'origin/main' into any-time-resolution-2
kmuehlbauer Dec 10, 2024
ae49850
Merge branch 'any-time-resolution-2' into ig/fix_extension_indexer
ilan-gold Dec 10, 2024
e8f5aa8
Merge branch 'main' into ig/fix_extension_indexer
ilan-gold Dec 10, 2024
9653a01
fix tests after merge
kmuehlbauer Dec 10, 2024
a405f03
Merge branch 'any-time-resolution-2' into ig/fix_extension_indexer
ilan-gold Dec 10, 2024
503b313
(fix): `dtype` type handling
ilan-gold Dec 11, 2024
c8ab8f3
(fix): move out of type checking block
ilan-gold Dec 11, 2024
66e5b06
(fix): satisfy mypy
ilan-gold Dec 11, 2024
f9fde3a
(fix): doctest
ilan-gold Dec 11, 2024
8a3e834
(fix): `nbytes` test?
ilan-gold Dec 11, 2024
f5822fd
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Dec 12, 2024
66c0b9f
Apply suggestions from code review
kmuehlbauer Dec 13, 2024
ba51274
provide CFDatetimeCoder from xarray.coders
kmuehlbauer Dec 13, 2024
3ba3e3f
provide CFDatetimeCoder from xarray.coders
kmuehlbauer Dec 13, 2024
1ab43eb
provide CFDatetimeCoder from xarray.coders
kmuehlbauer Dec 13, 2024
45ba9d3
fix tests as suggested by code review
kmuehlbauer Dec 13, 2024
091a90d
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Dec 14, 2024
ab3c9ed
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Dec 14, 2024
53fe43a
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Dec 16, 2024
a16a890
Move scalar handling logic into `_possibly_convert_objects` as sugges…
kmuehlbauer Dec 16, 2024
4283f8a
Add note on ``proleptic_gregorian`` calendar
kmuehlbauer Dec 16, 2024
0ba848d
remove time_resolution from docstring
kmuehlbauer Dec 16, 2024
6cb8702
update time.coding.rst wrt default time unit
kmuehlbauer Dec 16, 2024
5de8d0d
fix empty array
kmuehlbauer Dec 16, 2024
fc985d9
revert some tests to align with scalar logic handling
kmuehlbauer Dec 16, 2024
799b750
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Dec 16, 2024
a2d8e69
split out CFDatetimeCoder into coders, deprecate use_cftime as keywor…
kmuehlbauer Nov 22, 2024
d6fe956
add whats-new.rst entry
kmuehlbauer Dec 17, 2024
bd6a5d1
Apply suggestions from code review
kmuehlbauer Dec 17, 2024
6557ef9
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Dec 17, 2024
759fb72
fix warning
kmuehlbauer Dec 17, 2024
2118191
fix docstrings
kmuehlbauer Dec 17, 2024
262295a
try fix typing
kmuehlbauer Dec 17, 2024
941c4b5
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Dec 18, 2024
6e41425
Merge branch 'main' into coders
kmuehlbauer Dec 18, 2024
adebafa
Apply suggestions from code review
kmuehlbauer Dec 30, 2024
6cd81e5
Apply suggestions from code review
kmuehlbauer Dec 30, 2024
1ae9a22
Merge branch 'main' into coders
kmuehlbauer Dec 30, 2024
1cec644
Update xarray/conventions.py
kmuehlbauer Dec 30, 2024
60aed87
Merge branch 'main' into coders
kmuehlbauer Jan 1, 2025
797dc85
Merge branch 'main' into any-time-resolution-2-wip
kmuehlbauer Jan 1, 2025
225c5b3
remove duplicate function (introduced when merging main)
kmuehlbauer Jan 1, 2025
33a1563
Update deprecated directive
kmuehlbauer Jan 2, 2025
4efe8b0
merge main into any-time-resolution-2
kmuehlbauer Jan 3, 2025
21a0ec6
Merge branch 'main' into coders
kmuehlbauer Jan 3, 2025
48dea20
merge coders into any-time-resolution-2
kmuehlbauer Jan 3, 2025
1145f4b
fix typing
kmuehlbauer Jan 3, 2025
a9990cf
re-fix doctests
kmuehlbauer Jan 3, 2025
5fa630f
merge main into any-time-resolution-2
kmuehlbauer Jan 4, 2025
43c85d1
fix whats-new.rst after merging main
kmuehlbauer Jan 4, 2025
a4702d6
Apply suggestions from code review
kmuehlbauer Jan 4, 2025
9bd292a
Apply suggestions from code review
kmuehlbauer Jan 4, 2025
25b797e
rewrite recursive function using for-loop
kmuehlbauer Jan 5, 2025
3bd8cf4
remove astype-construct in _possibly_convert_objects
kmuehlbauer Jan 5, 2025
8b9c85a
Update xarray/coding/times.py
kmuehlbauer Jan 5, 2025
2555d89
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Jan 7, 2025
3b2d861
add suggestions from code review
kmuehlbauer Jan 7, 2025
66e181c
rephrase per suggestion
kmuehlbauer Jan 7, 2025
e380968
add article per suggestion
kmuehlbauer Jan 7, 2025
305938c
Apply suggestions from code review
kmuehlbauer Jan 7, 2025
b32b02c
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jan 7, 2025
a2c46b1
fix scalar handling for timedelta based indexer
kmuehlbauer Jan 7, 2025
fa2c4b6
remove stale error message and "ignore:Converting non-default" in tes…
kmuehlbauer Jan 7, 2025
c65c9af
add per review suggestions
kmuehlbauer Jan 7, 2025
21dffc1
add/remove todo
kmuehlbauer Jan 7, 2025
8eeeb78
rename timeunit -> format
kmuehlbauer Jan 7, 2025
7ad2183
return "ns" resolution per default for timedeltas, if not specified
kmuehlbauer Jan 7, 2025
9e4cab6
Be specific on types/dtpyes
kmuehlbauer Jan 7, 2025
5964a9e
add comment
kmuehlbauer Jan 7, 2025
308391d
add suggestions from code review
kmuehlbauer Jan 7, 2025
0e886d6
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Jan 7, 2025
80dc10b
Merge branch 'any-time-resolution-2' into ig/fix_extension_indexer
ilan-gold Jan 7, 2025
d494fe0
fix docs
kmuehlbauer Jan 8, 2025
ef6f722
fix test which isn't run for numpy2 atm
kmuehlbauer Jan 8, 2025
4ea5241
add notes on to_datetime section, update examples showing usage of 'a…
kmuehlbauer Jan 8, 2025
151e9cd
use np.timedelta64 for to_timedelta example, update as_unit example, …
kmuehlbauer Jan 8, 2025
8ecda4e
remove note
kmuehlbauer Jan 8, 2025
2bbf0ff
Apply suggestions from code review
kmuehlbauer Jan 8, 2025
0308672
refactor timedelta decoding to _numbers_to_timedelta and res-use it w…
kmuehlbauer Jan 9, 2025
b043020
fix conventions test, add todo
kmuehlbauer Jan 9, 2025
7182ce2
run times through pd.Timestamp to catch possible overflows
kmuehlbauer Jan 9, 2025
470235e
fix tests for cftime_to_nptime
kmuehlbauer Jan 9, 2025
e619a4c
fix cftime_to_nptime in cftimeindex
kmuehlbauer Jan 9, 2025
700e78d
introduce pd.Timestamp instance check
kmuehlbauer Jan 9, 2025
4525ea1
warn if out-of-bound datetimes are encoded with standard calendar, fa…
kmuehlbauer Jan 9, 2025
0b93dbd
fix time-coding.rst, add reference to time-series.rst.
kmuehlbauer Jan 9, 2025
b38cd7e
try to fix typing, ignore one
kmuehlbauer Jan 9, 2025
a2d1c96
try to fix docs
kmuehlbauer Jan 9, 2025
c4b2af3
revert doc-changes
kmuehlbauer Jan 9, 2025
45a0d56
Add a non-ns test for polyval, polyfit
dcherian Jan 9, 2025
3ef79cd
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Jan 10, 2025
ac719e8
more doc cosmetics
kmuehlbauer Jan 10, 2025
5292569
add whats-new.rst entry
kmuehlbauer Jan 10, 2025
ecd603b
add/fix coder docstring
kmuehlbauer Jan 10, 2025
f6716dc
add xr.date_range example as suggested per review
kmuehlbauer Jan 10, 2025
0556376
Apply suggestions from code review
kmuehlbauer Jan 13, 2025
ffc1828
Implement `time_unit` option for `decode_cf_timedelta` (#3)
spencerkclark Jan 13, 2025
eaf3c73
fix typing
kmuehlbauer Jan 13, 2025
1e6ba18
use nanmin/nanmax, catch numpy RuntimeWarnings
kmuehlbauer Jan 13, 2025
85a340b
Apply suggestions from code review
spencerkclark Jan 14, 2025
9d77885
Merge branch 'any-time-resolution-2' into ig/fix_extension_indexer
ilan-gold Jan 15, 2025
db69b63
Merge branch 'main' into any-time-resolution-2
kmuehlbauer Jan 15, 2025
b120917
Merge branch 'any-time-resolution-2' into ig/fix_extension_indexer
ilan-gold Jan 15, 2025
f7cda22
merge
ilan-gold Jan 15, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 16, 2024
commit 20d6c9d0f0f6168685deae19bf96e88af495e158
1 change: 0 additions & 1 deletion xarray/tests/test_variable.py
Original file line number Diff line number Diff line change
@@ -37,7 +37,6 @@
assert_identical,
assert_no_warnings,
has_dask_ge_2024_11_0,
has_pandas_3,
raise_if_dask_computes,
requires_bottleneck,
requires_cupy,
Loading