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

pantsbuild / pants / 19015773527

02 Nov 2025 05:33PM UTC coverage: 17.872% (-62.4%) from 80.3%
19015773527

Pull #22816

github

web-flow
Merge a12d75757 into 6c024e162
Pull Request #22816: Update Pants internal Python to 3.14

4 of 5 new or added lines in 3 files covered. (80.0%)

28452 existing lines in 683 files now uncovered.

9831 of 55007 relevant lines covered (17.87%)

0.18 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.py
1
# Copyright 2019 Pants project contributors (see CONTRIBUTORS.md).
2
# Licensed under the Apache License, Version 2.0 (see LICENSE).
3

UNCOV
4
from dataclasses import dataclass
×
5

UNCOV
6
from pants.backend.python.goals import lockfile
×
UNCOV
7
from pants.backend.python.subsystems.python_tool_base import PythonToolRequirementsBase
×
UNCOV
8
from pants.backend.python.target_types import PythonProvidesField
×
UNCOV
9
from pants.core.goals.package import PackageFieldSet
×
UNCOV
10
from pants.engine.rules import collect_rules
×
11

12

UNCOV
13
@dataclass(frozen=True)
×
UNCOV
14
class PythonDistributionFieldSet(PackageFieldSet):
×
UNCOV
15
    required_fields = (PythonProvidesField,)
×
16

17
    provides: PythonProvidesField
18

19

UNCOV
20
class Setuptools(PythonToolRequirementsBase):
×
UNCOV
21
    options_scope = "setuptools"
×
UNCOV
22
    help_short = "Python setuptools, used to package `python_distribution` targets."
×
23

UNCOV
24
    default_requirements = ["setuptools>=70.0", "wheel>=0.40"]
×
UNCOV
25
    default_lockfile_resource = ("pants.backend.python.subsystems", "setuptools.lock")
×
26

27

UNCOV
28
def rules():
×
UNCOV
29
    return (
×
30
        *collect_rules(),
31
        *lockfile.rules(),
32
    )
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

© 2025 Coveralls, Inc