modernise build system: Add pyproject.toml and migrate to PEP 517#70
Open
DininduSenanayake wants to merge 1 commit intosansomlab:mainfrom
Open
modernise build system: Add pyproject.toml and migrate to PEP 517#70DininduSenanayake wants to merge 1 commit intosansomlab:mainfrom
DininduSenanayake wants to merge 1 commit intosansomlab:mainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Modernizes the package build system by adding
pyproject.tomland adopting PEP 517 standards to ensure compatibility with pip 25.3+ and eliminate deprecation warnings.Changes
pyproject.tomlwith declarative package metadata and dependenciessetup.pyto delegate configuration topyproject.tomlpython setup.py developtopip install -e .Why This Change Is Needed
setup.py bdist_wheelmechanism in version 25.3pyproject.tomlis easier to read and maintain than imperativesetup.pyTesting
pip install -e .cellhubcommand) works as expectedBackward Compatibility
setup.pyfor backward compatibility with older toolsMigration Notes for Users
Users should update their installation commands:
python setup.py developpip install -e .Both methods currently work, but the new method is recommended going forward.