Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed May 18, 2024
1 parent 8934eda commit 1471971
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cibuildwheel/macos.py
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ def build(options: Options, tmp_path: Path) -> None:

# TODO remove me once virtualenv provides pip>=24.1b1
if config.version == "3.13":
call(["python", "-m", "pip", "install", "pip>=24.1b1"], env=virtualenv_env)
call("python", "-m", "pip", "install", "pip>=24.1b1", env=virtualenv_env)

if build_options.before_test:
before_test_prepared = prepare_command(
Expand Down
2 changes: 1 addition & 1 deletion cibuildwheel/windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ def build(options: Options, tmp_path: Path) -> None:

# TODO remove me once virtualenv provides pip>=24.1b1
if config.version.startswith("3.13."):
call(["python", "-m", "pip", "install", "pip>=24.1b1"], env=virtualenv_env)
call("python", "-m", "pip", "install", "pip>=24.1b1", env=virtualenv_env)

if build_options.before_test:
before_test_prepared = prepare_command(
Expand Down

0 comments on commit 1471971

Please sign in to comment.