diff --git a/src/build123d/direct_api.py b/src/build123d/direct_api.py index e211e68..6537120 100644 --- a/src/build123d/direct_api.py +++ b/src/build123d/direct_api.py @@ -2695,6 +2695,11 @@ class Shape: def copy(self) -> Shape: """Here for backwards compatibility with cq-editor""" + warnings.warn( + "copy() will be deprecated - use copy.copy() or copy.deepcopy() instead", + DeprecationWarning, + stacklevel=2, + ) return copy.deepcopy(self, None) def transform_shape(self, t_matrix: Matrix) -> Shape: