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
sceptre fails to run in environments with numpy 2.0 as a dependency. This can be mitigated by upgrading deepdiff to v8.0. I will have a PR shortly.
How to recreate in python3.11
pip install sceptre==4.5.2
pip install numpy==2.0.2
sceptre
Traceback (most recent call last):
File "/opt/venv/bin/sceptre", line 5, in <module>
from sceptre.cli import cli
File "/opt/venv/lib/python3.11/site-packages/sceptre/cli/__init__.py", line 15, in <module>
from sceptre.cli.create import create_command
File "/opt/venv/lib/python3.11/site-packages/sceptre/cli/create.py", line 6, in <module>
from sceptre.plan.plan import SceptrePlan
File "/opt/venv/lib/python3.11/site-packages/sceptre/plan/plan.py", line 19, in <module>
from sceptre.diffing.stack_differ import StackDiff
File "/opt/venv/lib/python3.11/site-packages/sceptre/diffing/stack_differ.py", line 17, in <module>
import deepdiff
File "/opt/venv/lib/python3.11/site-packages/deepdiff/__init__.py", line 10, in <module>
from .diff import DeepDiff
File "/opt/venv/lib/python3.11/site-packages/deepdiff/diff.py", line 16, in <module>
from deepdiff.helper import (strings, bytes_type, numbers, uuids, times, ListItemRemovedOrAdded, notpresent,
File "/opt/venv/lib/python3.11/site-packages/deepdiff/helper.py", line 60, in <module>
np_float_ = np.float_
^^^^^^^^^
File "/opt/venv/lib/python3.11/site-packages/numpy/__init__.py", line 397, in __getattr__
raise AttributeError(
AttributeError: `np.float_` was removed in the NumPy 2.0 release. Use `np.float64` instead.. Did you mean: 'float16'?
The text was updated successfully, but these errors were encountered:
rwalton91
pushed a commit
to rwalton91/sceptre
that referenced
this issue
Jan 22, 2025
sceptre fails to run in environments with numpy 2.0 as a dependency. This can be mitigated by upgrading
deepdiff
to v8.0. I will have a PR shortly.How to recreate in python3.11
The text was updated successfully, but these errors were encountered: