File tree 3 files changed +11
-0
lines changed 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ ITables ChangeLog
6
6
7
7
** Fixed**
8
8
- Complex table footers are now in the correct order ([ #219 ] ( https://github.com/mwouts/itables/issues/219 ) )
9
+ - We have adjusted the test suite for ` pandas==2.2.0 `
10
+ ([ #223 ] ( https://github.com/mwouts/itables/issues/223 ) ,
11
+ [ pandas-57229] ( https://github.com/pandas-dev/pandas/issues/57229 ) ,
12
+ [ pandas-55080] ( https://github.com/pandas-dev/pandas/issues/55080 ) )
9
13
10
14
11
15
1.6.3 (2023-12-10)
Original file line number Diff line number Diff line change @@ -312,6 +312,9 @@ def get_dict_of_test_series(polars=False):
312
312
313
313
@lru_cache ()
314
314
def generate_date_series ():
315
+ if pd .__version__ >= "2.2.0" :
316
+ # https://github.com/pandas-dev/pandas/issues/55080 is back in 2.2.0?
317
+ return pd .Series (pd .date_range ("1970-01-01" , "2099-12-31" , freq = "D" ))
315
318
return pd .Series (pd .date_range ("1677-09-23" , "2262-04-10" , freq = "D" ))
316
319
317
320
Original file line number Diff line number Diff line change 25
25
pytest .mark .filterwarnings ("error" ),
26
26
# Seen on the CI on Py38 and Py39
27
27
pytest .mark .filterwarnings ("ignore::ResourceWarning" ),
28
+ # TODO: https://github.com/mwouts/itables/issues/223
29
+ pytest .mark .filterwarnings (
30
+ "ignore:Setting an item of incompatible dtype is deprecated:FutureWarning"
31
+ ),
28
32
]
29
33
30
34
if PANDAS_VERSION_MAJOR < 2 :
You can’t perform that action at this time.
0 commit comments