Skip to content

Commit

Permalink
Exclude pythons starting with g by default (excludes graalpy in the c…
Browse files Browse the repository at this point in the history
…urrent set of pythons)
  • Loading branch information
timfel committed Jun 29, 2023
1 parent 8a8ebd0 commit f4928c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cibuildwheel/options.py
Expand Up @@ -427,7 +427,7 @@ def globals(self) -> GlobalOptions:
package_dir = args.package_dir
output_dir = args.output_dir

build_config = self.reader.get("build", env_plat=False, sep=" ") or "*"
build_config = self.reader.get("build", env_plat=False, sep=" ") or "[!g]*"
skip_config = self.reader.get("skip", env_plat=False, sep=" ")
test_skip = self.reader.get("test-skip", env_plat=False, sep=" ")

Expand Down

0 comments on commit f4928c6

Please sign in to comment.