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

Enable pandas type checking #9213

Merged
merged 28 commits into from
Jul 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
678536c
remove pandas from ignore missing imports
headtr1ck Jul 1, 2024
20066c4
add Any to dim arg of concat as placeholder
headtr1ck Jul 1, 2024
9053b60
allow sequence of np.ndarrays as coords in dataArray constructor
headtr1ck Jul 1, 2024
27bd0ab
fix several typing issues in tests
headtr1ck Jul 1, 2024
0dcb2a1
fix more types
headtr1ck Jul 1, 2024
a2b5b4c
more fixes
headtr1ck Jul 2, 2024
6a75746
more typing...
headtr1ck Jul 3, 2024
ce657e4
we are getting there?
headtr1ck Jul 3, 2024
5589156
who might have guessed it... more typing
headtr1ck Jul 4, 2024
e45d28b
continue fixing typing issues
headtr1ck Jul 7, 2024
faa8bcc
fix some typed_ops
headtr1ck Jul 7, 2024
2b678b1
fix last non-typed-ops errors
headtr1ck Jul 7, 2024
7b08a94
Merge branch 'pydata:main' into pandas-stubs
headtr1ck Jul 8, 2024
69b93dd
Merge branch 'main' into pandas-stubs
max-sixty Jul 12, 2024
ab4dbf5
update typed ops
headtr1ck Jul 12, 2024
27db395
remove useless DaskArray type in scalar or array type
headtr1ck Jul 12, 2024
5977107
fix missing import in type_checking
headtr1ck Jul 12, 2024
64765c8
fix import
headtr1ck Jul 12, 2024
5b1d98c
improve cftime offsets typing
headtr1ck Jul 12, 2024
16bee67
fix classvars
headtr1ck Jul 12, 2024
602c3cf
fix some checks
headtr1ck Jul 12, 2024
07a52ae
fix a broken test
headtr1ck Jul 13, 2024
a93bba6
Merge branch 'main' into pandas-stubs
headtr1ck Jul 13, 2024
f2f5dfb
Merge branch 'main' into pandas-stubs
headtr1ck Jul 15, 2024
a5eaa82
improve typing of test_concat
headtr1ck Jul 15, 2024
2f12f88
fix broken concat
headtr1ck Jul 15, 2024
4bfec5e
add whats-new
headtr1ck Jul 15, 2024
2f95dbd
Merge branch 'main' into pandas-stubs
headtr1ck Jul 15, 2024
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
2 changes: 2 additions & 0 deletions doc/whats-new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ Documentation
Internal Changes
~~~~~~~~~~~~~~~~

- Enable typing checks of pandas (:pull:`9213`).
By `Michael Niklas <https://github.com/headtr1ck>`_.

.. _whats-new.2024.06.0:

Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ module = [
"netCDF4.*",
"netcdftime.*",
"opt_einsum.*",
"pandas.*",
"pint.*",
"pooch.*",
"pyarrow.*",
Expand Down
Loading
Loading