Skip to content

Commit

Permalink
Update default coords for transpiler
Browse files Browse the repository at this point in the history
  • Loading branch information
berland committed Dec 17, 2024
1 parent 4e2bace commit 9a5814c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions komodo/release_transpiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def main():
help="Matrix to be transpiled, expected yaml format string.",
type=yaml.safe_load,
required=False,
default="{rhel: ['7'], py: ['3.8']}",
default="{rhel: ['8'], py: ['3.11']}",
)
transpile_for_pip_parser = subparsers.add_parser(
"transpile-for-pip",
Expand All @@ -237,7 +237,7 @@ def main():
help="Matrix to be transpiled, expected yaml format string.",
type=yaml.safe_load,
required=False,
default="{rhel: ['7'], py: ['3.8']}",
default="{rhel: ['8'], py: ['3.11']}",
)
args = parser.parse_args()
args.func(args)
Expand Down

0 comments on commit 9a5814c

Please sign in to comment.