• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

pantsbuild / pants / 22740642519

05 Mar 2026 11:00PM UTC coverage: 52.677% (-40.3%) from 92.931%
22740642519

Pull #23157

github

web-flow
Merge 2aa18e6d4 into f0030f5e7
Pull Request #23157: [pants ng] Partition source files by config.

31678 of 60136 relevant lines covered (52.68%)

0.53 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/python/pants/backend/python/subsystems/setuptools_scm.py
1
# Copyright 2022 Pants project contributors (see CONTRIBUTORS.md).
2
# Licensed under the Apache License, Version 2.0 (see LICENSE).
3

4
from pants.backend.python.subsystems.python_tool_base import PythonToolBase
×
5
from pants.backend.python.target_types import EntryPoint
×
6
from pants.core.goals.resolves import ExportableTool
×
7
from pants.engine.rules import collect_rules
×
8
from pants.engine.unions import UnionRule
×
9

10

11
class SetuptoolsSCM(PythonToolBase):
×
12
    options_scope = "setuptools-scm"
×
13
    help_short = (
×
14
        "A tool for generating versions from VCS metadata (https://github.com/pypa/setuptools_scm)."
15
    )
16

17
    default_main = EntryPoint("setuptools_scm")
×
18
    default_requirements = ["setuptools-scm>=6.4.2,<8"]
×
19

20
    register_interpreter_constraints = True
×
21

22
    default_lockfile_resource = ("pants.backend.python.subsystems", "setuptools_scm.lock")
×
23

24

25
def rules():
×
26
    return [
×
27
        *collect_rules(),
28
        UnionRule(ExportableTool, SetuptoolsSCM),
29
    ]
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc