Skip to content

Commit

Permalink
Sync tags change from packaging to support GraalPy
Browse files Browse the repository at this point in the history
  • Loading branch information
msimacek committed Sep 19, 2024
1 parent 04e0066 commit 5574b13
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mesonpy/_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

import os
import platform
import struct
import sys
import sysconfig
import typing
Expand All @@ -25,7 +26,7 @@
}


_32_BIT_INTERPRETER = sys.maxsize <= 2**32
_32_BIT_INTERPRETER = struct.calcsize("P") == 4


def get_interpreter_tag() -> str:
Expand Down

0 comments on commit 5574b13

Please sign in to comment.