Skip to content

Commit

Permalink
Merge pull request #445 from mayeut/fix-numpy-tests
Browse files Browse the repository at this point in the history
fix: numpy tests
  • Loading branch information
mayeut committed Sep 8, 2023
2 parents ebd4bc0 + 73a6ad7 commit fe76c14
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/integration/test_manylinux.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
PYTHON_ABI_MAJ_MIN = "".join(PYTHON_MAJ_MIN)
PYTHON_ABI_FLAGS = "m" if sys.version_info.minor < 8 else ""
PYTHON_ABI = f"cp{PYTHON_ABI_MAJ_MIN}-cp{PYTHON_ABI_MAJ_MIN}{PYTHON_ABI_FLAGS}"
MANYLINUX_PYTHON_IMAGE_ID = f'python:{".".join(PYTHON_MAJ_MIN)}-slim'
MANYLINUX_PYTHON_IMAGE_ID = f'python:{".".join(PYTHON_MAJ_MIN)}-slim-bullseye'
MUSLLINUX_IMAGES = {
"musllinux_1_1": f"quay.io/pypa/musllinux_1_1_{PLATFORM}:latest",
}
Expand All @@ -77,9 +77,9 @@
PATH = {k: ":".join(PATH_DIRS).format(devtoolset=v) for k, v in DEVTOOLSET.items()}
WHEEL_CACHE_FOLDER = op.expanduser("~/.cache/auditwheel_tests")
NUMPY_VERSION_MAP = {
"37": "1.19.2",
"38": "1.19.2",
"39": "1.19.2",
"37": "1.21.4",
"38": "1.21.4",
"39": "1.21.4",
"310": "1.21.4",
"311": "1.23.4",
}
Expand Down

0 comments on commit fe76c14

Please sign in to comment.