Skip to content

Commit 0170484

Browse files
committed
release Hatch v1.14.2
1 parent 93e55ce commit 0170484

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

backend/src/hatchling/dep/core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def dependencies_in_sync(
126126
if sys_path is None:
127127
sys_path = sys.path
128128
if environment is None:
129-
environment = default_environment()
129+
environment = default_environment() # type: ignore
130130

131131
installed_distributions = DistributionCache(sys_path)
132-
return all(dependency_in_sync(requirement, environment, installed_distributions) for requirement in requirements)
132+
return all(dependency_in_sync(requirement, environment, installed_distributions) for requirement in requirements) # type: ignore

backend/src/hatchling/metadata/spec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def project_metadata_from_core_metadata(core_metadata: str) -> dict[str, Any]:
174174
left, _, right = marker
175175
if left.value == 'extra':
176176
extra = right.value
177-
del markers[i]
177+
del markers[i] # noqa: B909
178178
# If there was only one marker then there will be an unnecessary
179179
# trailing semicolon in the string representation
180180
if not markers:

docs/history/hatch.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88

99
## Unreleased
1010

11+
## [1.14.2](https://github.com/pypa/hatch/releases/tag/hatch-v1.14.2) - 2025-09-24 ## {: #hatch-v1.14.2 }
12+
13+
***Fixed:***
14+
15+
- Fix compatibility with recent versions of Click
16+
1117
## [1.14.1](https://github.com/pypa/hatch/releases/tag/hatch-v1.14.1) - 2025-04-07 ## {: #hatch-v1.14.1 }
1218

1319
***Fixed:***

ruff_defaults.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ select = [
1515
"ARG004",
1616
"ARG005",
1717
"ASYNC100",
18-
"ASYNC101",
19-
"ASYNC102",
2018
"B002",
2119
"B003",
2220
"B004",
@@ -130,7 +128,6 @@ select = [
130128
"E742",
131129
"E743",
132130
"E902",
133-
"E999",
134131
"EM101",
135132
"EM102",
136133
"EM103",
@@ -628,7 +625,6 @@ select = [
628625
"UP024",
629626
"UP025",
630627
"UP026",
631-
"UP027",
632628
"UP028",
633629
"UP029",
634630
"UP030",

0 commit comments

Comments
 (0)