diff options
| author | Nguyễn Gia Phong <cnx@loang.net> | 2026-08-13 13:57:34 +0900 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-08-14 13:28:11 +0100 |
| commit | e1d4a53286c4d5fde79ccbcad4fb4f0f6cc3e5a7 (patch) | |
| tree | 8a6a75c194fd04f9dcc3a6b84fe9e58f0304978d /gnu/packages | |
| parent | d2bd37e9ed40e7c48de70a149ab2f2fb2c0023ee (diff) | |
gnu: python-pandas-stubs: Update to 3.0.3.260530.
* gnu/packages/python-science.scm (python-pandas-stubs):
Update to 3.0.3.260530.
[arguments]<#:test-flags>: Deselect additional failing tests.
[native-inputs]: Add python-pytz and python-tables.
Merges: guix/guix!10525
Reviewed-by: Hugo Buddelmeijer <hugo@buddelmeijer.nl>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/python-science.scm | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index be3b66714ea..be736be45e3 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm | |||
| @@ -3245,7 +3245,7 @@ of Pandas | |||
| 3245 | (name "python-pandas-stubs") | 3245 | (name "python-pandas-stubs") |
| 3246 | ;; The versioning follows that of Pandas and uses the date of the | 3246 | ;; The versioning follows that of Pandas and uses the date of the |
| 3247 | ;; python-pandas-stubs release. | 3247 | ;; python-pandas-stubs release. |
| 3248 | (version "2.3.3.251219") | 3248 | (version "3.0.3.260530") |
| 3249 | (source | 3249 | (source |
| 3250 | (origin | 3250 | (origin |
| 3251 | (method git-fetch) | 3251 | (method git-fetch) |
| @@ -3254,13 +3254,29 @@ of Pandas | |||
| 3254 | (commit (string-append "v" version)))) | 3254 | (commit (string-append "v" version)))) |
| 3255 | (file-name (git-file-name name version)) | 3255 | (file-name (git-file-name name version)) |
| 3256 | (sha256 | 3256 | (sha256 |
| 3257 | (base32 "1xh753wv5dbc59qp7fas323181mlblvhqmd9a4g7zzhaa2mxmzqs")))) | 3257 | (base32 "0r79bbblf2rkbw2min9x231c0h74rmir0aay0wv52v6d4vig7xdw")))) |
| 3258 | (build-system pyproject-build-system) | 3258 | (build-system pyproject-build-system) |
| 3259 | (arguments | 3259 | (arguments |
| 3260 | (list | 3260 | (list |
| 3261 | ;; tests: 1619 passed, 12 skipped, 7 deselected | 3261 | ;; tests: 3184 passed, 6 skipped, 21 deselected |
| 3262 | #:test-flags | 3262 | #:test-flags |
| 3263 | #~(list | 3263 | #~(list |
| 3264 | ;; Expected type '<class 'numpy.[...]'>' but got '<class '[...]'>' | ||
| 3265 | "--deselect=tests/frame/test_frame.py::test_types_median" | ||
| 3266 | "--deselect=tests/frame/test_frame.py::test_types_min" | ||
| 3267 | "--deselect=tests/frame/test_frame.py::test_types_max" | ||
| 3268 | "--deselect=tests/frame/test_indexing.py::test_getset_untyped" | ||
| 3269 | "--deselect=tests/series/test_agg.py::test_agg_any_float" | ||
| 3270 | "--deselect=tests/series/test_agg.py::test_agg_int" | ||
| 3271 | "--deselect=tests/series/test_agg.py::test_agg_float" | ||
| 3272 | "--deselect=tests/series/test_agg.py::test_agg_complex" | ||
| 3273 | "--deselect=tests/series/test_series.py::test_types_min" | ||
| 3274 | "--deselect=tests/series/test_series.py::test_types_max" | ||
| 3275 | "--deselect=tests/series/test_series.py::test_types_var" | ||
| 3276 | "--deselect=tests/series/test_series.py::test_types_agg" | ||
| 3277 | "--deselect=tests/series/test_series.py::test_types_aggregate" | ||
| 3278 | ;; ModuleNotFoundError: No module named 'pyiceberg' | ||
| 3279 | "--deselect=tests/test_io.py::test_iceberg" | ||
| 3264 | ;; ImportError: Missing optional dependency 'python-calamine'. | 3280 | ;; ImportError: Missing optional dependency 'python-calamine'. |
| 3265 | "--deselect=tests/test_io.py::test_read_excel" | 3281 | "--deselect=tests/test_io.py::test_read_excel" |
| 3266 | "--deselect=tests/test_io.py::test_excel_reader"))) | 3282 | "--deselect=tests/test_io.py::test_excel_reader"))) |
| @@ -3281,8 +3297,10 @@ of Pandas | |||
| 3281 | python-pyarrow | 3297 | python-pyarrow |
| 3282 | python-pyreadstat | 3298 | python-pyreadstat |
| 3283 | python-pytest | 3299 | python-pytest |
| 3300 | python-pytz | ||
| 3284 | python-scipy | 3301 | python-scipy |
| 3285 | python-sqlalchemy-2 | 3302 | python-sqlalchemy-2 |
| 3303 | python-tables | ||
| 3286 | python-tabulate | 3304 | python-tabulate |
| 3287 | python-typing-extensions | 3305 | python-typing-extensions |
| 3288 | python-xarray | 3306 | python-xarray |
| @@ -3293,6 +3311,7 @@ of Pandas | |||
| 3293 | ;; python-calamine | 3311 | ;; python-calamine |
| 3294 | ;; python-poethepoet | 3312 | ;; python-poethepoet |
| 3295 | ;; python-pyarrow-stubs | 3313 | ;; python-pyarrow-stubs |
| 3314 | ;; python-pyiceberg | ||
| 3296 | ;; python-pyrefly | 3315 | ;; python-pyrefly |
| 3297 | ;; python-python-calamine | 3316 | ;; python-python-calamine |
| 3298 | ;; python-pyxlsb | 3317 | ;; python-pyxlsb |
