-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Support NumPy 2.0 #16998
Comments
If blocked, it isn't |
Indeed. We should have something to mark "high importance" though - which this certainly is. |
I've encountered a seg fault where another library is converting a Polars dataframe to numpy with numpy 2.0.0 and polars 0.20.31. import polars as pl
df = pl.from_repr("""┌───────────┬─────────────────────┬────────────┐
│ unique_id ┆ ds ┆ y │
│ --- ┆ --- ┆ --- │
│ cat ┆ datetime[ns] ┆ f64 │
╞═══════════╪═════════════════════╪════════════╡
│ id_00 ┆ 2000-01-01 00:00:00 ┆ 17.519167 │
│ id_00 ┆ 2000-01-02 00:00:00 ┆ 87.799695 │
│ id_00 ┆ 2000-01-03 00:00:00 ┆ 177.442975 │
│ id_00 ┆ 2000-01-04 00:00:00 ┆ 232.70411 │
│ id_00 ┆ 2000-01-05 00:00:00 ┆ 317.510474 │
│ id_19 ┆ 2000-03-09 00:00:00 ┆ 28.541985 │
│ id_19 ┆ 2000-03-10 00:00:00 ┆ 33.841384 │
│ id_19 ┆ 2000-03-11 00:00:00 ┆ 38.878866 │
│ id_19 ┆ 2000-03-12 00:00:00 ┆ 43.675512 │
│ id_19 ┆ 2000-03-13 00:00:00 ┆ 49.603114 │
└───────────┴─────────────────────┴────────────┘""")
df["ds"].to_numpy() This gives a seg fault. |
@ritchie46 import datetime
import polars as pl
pl.Series([datetime.datetime.now()]).to_numpy() |
Yes, we are familiar. Nothing we can do about it at the moment, see the linked issue. |
You could also pin numpy here polars/py-polars/pyproject.toml Line 52 in 14dd2ca
in case you're planning a release soon, that'd ensure compatibility when installing |
Yes, we must pin numpy 1.0 until then. |
Bumped into this in scikit-learn #17380 (that I opened before realising this was a known issue). I have to admit this I was quite surprised (a segmentation fault is never a nice feeling 😅) but I guess there is not much you can do since numpy is an optional dependency. You can only hope that people do Edit: on the conda-forge side it looks like polars depend on numpy and they pin |
We can also do repodata Patches to retroactively pin to numpy<2 for older polars versions |
Polars already partially supports NumPy 2.0.
We do not support temporal types yet (e.g.
datetime64
) - using these will result in a segfault. Support must first be implemented in the PyO3numpy
crate:When support is implemented and a new release is available, we can upgrade and that should take care of it.
For now, we will pin to
numpy<2
in our pipelines.The text was updated successfully, but these errors were encountered: