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
Is your feature request related to a problem? Please describe.
Since we no longer support python 3.7, we don't need to keep our own implementation of the cached_property decorator.
Describe the solution you'd like
Delete the cached_property definition inside the tools.py module.
Adjust all the imports throughout the rocketpy module
In order to avoid breaking changes, I think we could import the cached_property in the tools.py module so it doesn't break when we do from rocketpy.tools import cached_property
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Since we no longer support python 3.7, we don't need to keep our own implementation of the cached_property decorator.
Describe the solution you'd like
In order to avoid breaking changes, I think we could import the
cached_property
in the tools.py module so it doesn't break when we dofrom rocketpy.tools import cached_property
The text was updated successfully, but these errors were encountered: