Skip to content

Commit

Permalink
fix comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
mayeut committed Sep 9, 2023
1 parent 88b9087 commit 87597ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_manylinux.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
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}"
PYTHON_IMAGE_TAG = ".".join(PYTHON_MAJ_MIN) + (
"-rc" if PYTHON_MAJ_MIN == ("3", "12") else ""
"-rc" if PYTHON_MAJ_MIN == ["3", "12"] else ""
)
MANYLINUX_PYTHON_IMAGE_ID = f"python:{PYTHON_IMAGE_TAG}-slim-bullseye"
MUSLLINUX_IMAGES = {
Expand Down

0 comments on commit 87597ea

Please sign in to comment.