Skip to content

Commit 3fe5b44

Browse files
committed
address review comments
1 parent d8234fd commit 3fe5b44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cibuildwheel/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ def detect_warnings(*, options: Options, identifiers: Iterable[str]) -> list[str
405405
if sys.version_info[:2] < python_version_deprecation[0]:
406406
python_version = ".".join(map(str, python_version_deprecation[0]))
407407
msg = (
408-
f"cibuildwheel {python_version_deprecation[1]}+ will require Python {python_version}+, "
408+
f"cibuildwheel {python_version_deprecation[1]} will require Python {python_version}+, "
409409
"please upgrade the Python version used to run cibuildwheel. "
410410
"This does not affect the versions you can target when building wheels. See: https://cibuildwheel.pypa.io/en/stable/#what-does-it-do"
411411
)
@@ -419,7 +419,7 @@ def detect_warnings(*, options: Options, identifiers: Iterable[str]) -> list[str
419419
# Reminder: in an f-string, double braces means literal single brace
420420
msg = (
421421
f"{option_name}: '{{python}}' and '{{pip}}' are no longer needed, "
422-
"and will be removed in a future release. Simply use 'python' or 'pip' instead."
422+
"and will be removed in cibuildwheel 3. Simply use 'python' or 'pip' instead."
423423
)
424424
warnings.append(msg)
425425

0 commit comments

Comments
 (0)