You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Install the package >=0.16.2 on any python 3.13 environment. To make this easy I provide this docker definition:
FROM python:3.13-slim
RUN pip install elementary-data==0.16.2
It seems to be directly related to the addition ofnumpy<2.0.0 which does not work with python 3.13. You will get the same error if you build the docker:
FROM python:3.13-slim
RUN pip install "numpy<2.0.0"
Expected behavior
Package supports python 3.13
The text was updated successfully, but these errors were encountered:
Describe the bug
Fails to install the package with python 3.13
To Reproduce
Install the package
>=0.16.2
on any python 3.13 environment. To make this easy I provide this docker definition:It seems to be directly related to the addition of
numpy<2.0.0
which does not work with python 3.13. You will get the same error if you build the docker:Expected behavior
Package supports python 3.13
The text was updated successfully, but these errors were encountered: