We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa7a0e7 commit bbf8b62Copy full SHA for bbf8b62
.github/workflows/python-package.yml
@@ -71,7 +71,7 @@ jobs:
71
strategy:
72
matrix:
73
os: ["windows-latest", "macos-latest"]
74
- sdl-version: ["2.0.14", "2.0.16"]
+ sdl-version: ["2.0.14", "2.0.16", "2.30.0"]
75
fail-fast: true
76
steps:
77
- uses: actions/checkout@v4
build_sdl.py
@@ -33,7 +33,7 @@
33
# Used to remove excessive newlines in debug outputs.
34
RE_NEWLINES = re.compile(r"\n\n+")
35
# Functions using va_list need to be culled.
36
-RE_VAFUNC = re.compile(r"^.*?\([^()]*va_list[^()]*\);$", re.MULTILINE)
+RE_VAFUNC = re.compile(r"^.*?\([^()]*va_list[^()]*\)\s*;\s*$", re.MULTILINE)
37
# Static inline functions need to be culled.
38
RE_INLINE = re.compile(r"^static inline.*?^}$", re.MULTILINE | re.DOTALL)
39
# Most SDL_PIXELFORMAT names need their values scrubbed.
0 commit comments