Skip to content

Commit 8ff6b3b

Browse files
committed
Revert "fix: restrict installation to Ubuntu 18.04 (microsoft#665)"
This reverts commit 53cf799. On apt based PIP installations only PIP 20.0.2 is shippd, so we can't assume that they have a PIP which is >= 20.3 currently. Maybe in 1-2 years.
1 parent c0de93c commit 8ff6b3b

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def run(self) -> None:
9292
if platform == "mac":
9393
wheel = "macosx_10_13_x86_64.whl"
9494
if platform == "linux":
95-
wheel = "manylinux_2_27_x86_64.whl"
95+
wheel = "manylinux1_x86_64.whl"
9696
if platform == "win32":
9797
wheel = "win32.whl"
9898
if platform == "win32_x64":

tests/test_installation.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,9 @@ def test_install(tmp_path: Path):
2828
if sys.platform == "win32":
2929
wheelpath = list((root / "dist").glob("playwright*win_amd64*.whl"))[0]
3030
elif sys.platform == "linux":
31-
wheelpath = list((root / "dist").glob("playwright*manylinux_2_27_*.whl"))[0]
31+
wheelpath = list((root / "dist").glob("playwright*manylinux1*.whl"))[0]
3232
elif sys.platform == "darwin":
3333
wheelpath = list((root / "dist").glob("playwright*macosx_10_*.whl"))[0]
34-
subprocess.check_output([context.env_exe, "-m", "pip", "install", "pip", "-U"])
3534
subprocess.check_output(
3635
[
3736
context.env_exe,

0 commit comments

Comments
 (0)