Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,7 @@ MANIFEST
.venv*/
.conda*/
.python-version

# Lock files
uv.lock
*pylock.toml
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ validate_pyproject = "validate_pyproject.repo_review:repo_review_families"
[dependency-groups]
dev = [
{ include-group = "test" },
"validate_pyproject[all]",
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI, I'd usually not do this, but instead move the contents of [all] here. This does work correctly (and avoids the deprecation warning that using dev-environments produces), but I believe pip install --group dev would install the PyPI version instead of the local version, though the better pip install --group dev -e. should continue to work (and there's no way to install it without the package).

]
docs = [
"furo>=2023.08.17",
Expand Down Expand Up @@ -79,9 +80,6 @@ typecheck = [
environments = [
"python_version >= '3.9'",
]
dev-dependencies = [
"validate_pyproject[all]",
]

[tool.setuptools_scm]
version_scheme = "no-guess-dev"
Expand Down