Skip to content

Commit 461b8d6

Browse files
committed
chore(deps): upgrade pip
1 parent b638193 commit 461b8d6

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

ATTRIBUTIONS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7296,7 +7296,7 @@ SOFTWARE.
72967296

72977297
```
72987298

7299-
## pip (26.0.1) - UNKNOWN
7299+
## pip (26.1) - UNKNOWN
73007300

73017301
The PyPA recommended tool for installing Python packages.
73027302

src/aignostics_foundry_core/foundry.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,8 @@ def python_version_minor(self) -> str:
139139
"""
140140
if not self.python_version:
141141
return ""
142-
parts = self.python_version.split(".")
143142
major_minor_part_count = 2
144-
return ".".join(parts[:major_minor_part_count]) if len(parts) >= major_minor_part_count else self.python_version
143+
return ".".join(self.python_version.split(".")[:major_minor_part_count])
145144

146145
project_path: Path | None = None
147146
metadata: PackageMetadata = Field(default_factory=PackageMetadata)

uv.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)