Skip to content

Commit b8a2920

Browse files
Add simple extra to pyproject.toml
Its used when using the simplified activation.
1 parent 250b5c2 commit b8a2920

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ dependencies = [
4949
]
5050
[project.optional-dependencies]
5151
rich = ["rich"]
52+
simple = []
5253
toml = []
5354

5455
[dependency-groups]

testing/test_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ def test_distribution_provides_extras() -> None:
418418

419419
dist = distribution("setuptools_scm")
420420
pe: list[str] = dist.metadata.get_all("Provides-Extra", [])
421-
assert sorted(pe) == ["rich", "toml"]
421+
assert sorted(pe) == ["rich", "simple", "toml"]
422422

423423

424424
@pytest.mark.issue(760)

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)