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
Legacy editable installs (via setup.py develop) are deprecated and will be removed in pip 25.0. To future-proof the project and align with modern packaging standards, we need to migrate to using a pyproject.toml file as per PEP 660. This ensures compatibility with current and future versions of pip and setuptools.
Proposed Steps:
Add a pyproject.toml file with a minimal configuration:
Legacy editable installs (via
setup.py develop
) are deprecated and will be removed in pip 25.0. To future-proof the project and align with modern packaging standards, we need to migrate to using apyproject.toml
file as per PEP 660. This ensures compatibility with current and future versions ofpip
andsetuptools
.Proposed Steps:
pyproject.toml
file with a minimal configuration:pip install -e .
) work as expected.setup.py
workflows in the future.References:
The text was updated successfully, but these errors were encountered: