Skip to content

Commit fe76c14

Browse files
authored
Merge pull request #445 from mayeut/fix-numpy-tests
fix: numpy tests
2 parents ebd4bc0 + 73a6ad7 commit fe76c14

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/integration/test_manylinux.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
PYTHON_ABI_MAJ_MIN = "".join(PYTHON_MAJ_MIN)
5353
PYTHON_ABI_FLAGS = "m" if sys.version_info.minor < 8 else ""
5454
PYTHON_ABI = f"cp{PYTHON_ABI_MAJ_MIN}-cp{PYTHON_ABI_MAJ_MIN}{PYTHON_ABI_FLAGS}"
55-
MANYLINUX_PYTHON_IMAGE_ID = f'python:{".".join(PYTHON_MAJ_MIN)}-slim'
55+
MANYLINUX_PYTHON_IMAGE_ID = f'python:{".".join(PYTHON_MAJ_MIN)}-slim-bullseye'
5656
MUSLLINUX_IMAGES = {
5757
"musllinux_1_1": f"quay.io/pypa/musllinux_1_1_{PLATFORM}:latest",
5858
}
@@ -77,9 +77,9 @@
7777
PATH = {k: ":".join(PATH_DIRS).format(devtoolset=v) for k, v in DEVTOOLSET.items()}
7878
WHEEL_CACHE_FOLDER = op.expanduser("~/.cache/auditwheel_tests")
7979
NUMPY_VERSION_MAP = {
80-
"37": "1.19.2",
81-
"38": "1.19.2",
82-
"39": "1.19.2",
80+
"37": "1.21.4",
81+
"38": "1.21.4",
82+
"39": "1.21.4",
8383
"310": "1.21.4",
8484
"311": "1.23.4",
8585
}

0 commit comments

Comments
 (0)