Updated installation instructions#1203
Merged
VisLab merged 1 commit intohed-standard:mainfrom Feb 4, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR modernizes the project's dependency management by migrating from standalone requirements.txt files to a pyproject.toml-based approach, which is the current Python packaging standard. All dependency definitions are now consolidated in pyproject.toml with proper optional dependency groups (extras).
Changes:
- Removed all standalone requirements files (
requirements.txt,requirements-dev.txt,docs/requirements.txt) - Added explicit version constraints to previously unversioned dependencies in
pyproject.toml - Updated all documentation and CI workflows to use the new extras syntax (
.[dev,test,docs,examples])
Reviewed changes
Copilot reviewed 16 out of 17 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| requirements.txt | Deleted - dependencies moved to pyproject.toml |
| requirements-dev.txt | Deleted - dependencies moved to pyproject.toml optional-dependencies |
| docs/requirements.txt | Deleted - dependencies moved to pyproject.toml [docs] extra |
| pyproject.toml | Added version constraints to 6 dependencies (defusedxml, inflect, numpy, openpyxl, portalocker, semantic-version) |
| README.md | Updated development setup instructions to use extras syntax |
| CONTRIBUTING.md | Updated development environment setup to use extras syntax |
| docs/user_guide.md | Updated example installation to use .[examples] |
| docs/overview.md | Updated example installation to use .[examples] |
| .github/workflows/spec_tests.yaml | Removed redundant requirements.txt installation |
| .github/workflows/notebook_tests.yaml | Simplified to use .[examples] |
| .github/workflows/links.yaml | Changed to use .[docs] |
| .github/workflows/docs.yaml | Changed to use .[docs], updated cache key to use pyproject.toml |
| .github/workflows/ci_windows.yaml | Removed redundant installation, updated cache key |
| .github/workflows/ci_cov.yaml | Separated ruff installation, using .[docs,test] |
| .github/workflows/ci.yaml | Consolidated to use .[docs,test], updated cache key |
| MANIFEST.in | Removed reference to deleted requirements.txt |
| hed/_version.py | Auto-generated version bump (development version) |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
No description provided.