Skip to content

Commit 051fd79

Browse files
committed
do not upgrqade setuptools unless linux
1 parent 6844130 commit 051fd79

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

tests/test_verify_build.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,10 @@ def test_pip_install_salt_git(pipexec, build, build_dir, pyexec, build_version):
107107
if sys.platform == "darwin" and "3.13" in build_version:
108108
pytest.xfail("Salt does not work with 3.13 on macos yet")
109109

110-
subprocess.run([pipexec, "--upgrade", "install", "setuptools>=72.2.0"], check=True)
110+
# if sys.platform == "linux":
111+
# subprocess.run(
112+
# [pipexec, "--upgrade", "install", "setuptools>=72.2.0"], check=True
113+
# )
111114

112115
env = os.environ.copy()
113116
env["RELENV_BUILDENV"] = "yes"

0 commit comments

Comments
 (0)