Diff pandas-2.0.2 with a pandas-2.0.3-r1

/usr/portage/dev-python/pandas/pandas-2.0.3-r1.ebuild 2023-10-09 14:52:30.320368371 +0300
25 25

  
26 26
SLOT="0"
27 27
LICENSE="BSD"
28
KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86"
28
KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv ~x86 ~arm64-macos ~x64-macos"
29 29
IUSE="doc full-support minimal test X"
30 30
RESTRICT="!test? ( test )"
31 31

  
......
109 109
		>=dev-python/hypothesis-6.34.2[${PYTHON_USEDEP}]
110 110
		>=dev-python/openpyxl-3.0.7[${PYTHON_USEDEP}]
111 111
		>=dev-python/pymysql-1.0.2[${PYTHON_USEDEP}]
112
		>=dev-python/pytest-7.3.2[${PYTHON_USEDEP}]
112 113
		>=dev-python/pytest-asyncio-0.17.0[${PYTHON_USEDEP}]
113 114
		>=dev-python/pytest-xdist-2.2.0[${PYTHON_USEDEP}]
114 115
		>=dev-python/psycopg-2.8.6:2[${PYTHON_USEDEP}]
......
121 122
#  hence rm from doc? ( ), again
122 123
RDEPEND="
123 124
	${COMMON_DEPEND}
125
	dev-python/tzdata[${PYTHON_USEDEP}]
124 126
	!minimal? ( ${RECOMMENDED_DEPEND} )
125 127
	full-support? ( ${OPTIONAL_DEPEND} )
126 128
"
......
130 132
	sed -e "/^              'sphinx.ext.intersphinx',/d" \
131 133
		-i doc/source/conf.py || die
132 134

  
133
	# unnecessary with system tzdata
134
	sed -i -e '/tzdata/d' pyproject.toml || die
135

  
136 135
	distutils-r1_python_prepare_all
137 136
}
138 137

  
......
190 189

  
191 190
		# crashes
192 191
		pandas/tests/io/pytables/test_file_handling.py::test_complibs
192

  
193
		# deprecation warning
194
		pandas/tests/io/pytables/test_retain_attributes.py::test_retain_index_attributes2
195

  
196
		# Needs 64-bit time_t (TODO: split into 32-bit arch only section)
197
		pandas/tests/tseries/offsets/test_year.py::test_add_out_of_pydatetime_range
198
		'pandas/tests/tseries/offsets/test_common.py::test_apply_out_of_range[tzlocal()-BusinessDay]'
199
		'pandas/tests/tseries/offsets/test_common.py::test_apply_out_of_range[tzlocal()-BusinessHour]'
200
		'pandas/tests/tseries/offsets/test_common.py::test_apply_out_of_range[tzlocal()-BusinessMonthEnd]'
201
		'pandas/tests/tseries/offsets/test_common.py::test_apply_out_of_range[tzlocal()-BusinessMonthBegin]'
202
		'pandas/tests/tseries/offsets/test_common.py::test_apply_out_of_range[tzlocal()-BQuarterEnd]'
203
		'pandas/tests/tseries/offsets/test_common.py::test_apply_out_of_range[tzlocal()-BQuarterBegin]'
204
		'pandas/tests/tseries/offsets/test_common.py::test_apply_out_of_range[tzlocal()-CustomBusinessDay]'
205
		'pandas/tests/tseries/offsets/test_common.py::test_apply_out_of_range[tzlocal()-CustomBusinessHour]'
206
		'pandas/tests/tseries/offsets/test_common.py::test_apply_out_of_range[tzlocal()-CustomBusinessMonthEnd]'
207
		'pandas/tests/tseries/offsets/test_common.py::test_apply_out_of_range[tzlocal()-CustomBusinessMonthBegin]'
208
		'pandas/tests/tseries/offsets/test_common.py::test_apply_out_of_range[tzlocal()-MonthEnd]'
209
		'pandas/tests/tseries/offsets/test_common.py::test_apply_out_of_range[tzlocal()-MonthBegin]'
210
		'pandas/tests/tseries/offsets/test_common.py::test_apply_out_of_range[tzlocal()-SemiMonthBegin]'
211
		'pandas/tests/tseries/offsets/test_common.py::test_apply_out_of_range[tzlocal()-SemiMonthEnd]'
212
		'pandas/tests/tseries/offsets/test_common.py::test_apply_out_of_range[tzlocal()-QuarterEnd]'
213
		'pandas/tests/tseries/offsets/test_common.py::test_apply_out_of_range[tzlocal()-LastWeekOfMonth]'
214
		'pandas/tests/tseries/offsets/test_common.py::test_apply_out_of_range[tzlocal()-WeekOfMonth]'
215
		'pandas/tests/tseries/offsets/test_common.py::test_apply_out_of_range[tzlocal()-Week]'
216

  
217
		# alignment issues: bug #911660 (fixed upstream but not yet in a release)
218
		# https://github.com/pandas-dev/pandas/issues/54391
219
		pandas/tests/io/sas/test_byteswap.py::test_float_byteswap
220

  
221
		# hdf / pytables have alignment problems: bug #911660
222
		# https://github.com/pandas-dev/pandas/issues/54396
223
		pandas/tests/io/pytables/test_append.py::test_append_frame_column_oriented
224
		pandas/tests/io/pytables/test_store.py::test_select_filter_corner
193 225
	)
194 226

  
195 227
	local -x LC_ALL=C.UTF-8
Thank you!