-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor dependency management to pyproject.toml
Previously, our dependency management was a bit of a mess. We had both a `requirements.txt` and a `pyproject.toml` and some dependencies were only defined in one but not the other. This aims to fix this mess and refactor towards only using `pyproject.toml` to define the dependencies. At the same time, we also clean up the install process, which now works by simply calling `pip install .` or `pip install -e .[dev]` for the developer envrionment. This change is reflected in the `.github/workflows`. Furthermore, we configure the already introduced `setuptools_scm` to automatically infer a version based on the most recent git tag.
- Loading branch information
Showing
6 changed files
with
50 additions
and
37 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.