rjdbcm / Aspidites

The reference implementation of the Woma Programming Language compiler.
http://aspidites.org
GNU General Public License v3.0
2 stars 1 forks source link

Cython 3.0 arguments clash with Aspidites' ArgumentParser #39

Open github-actions[bot] opened 2 years ago

github-actions[bot] commented 2 years ago

Cython 3.0 arguments clash with Aspidites' ArgumentParser

https://github.com/rjdbcm/Aspidites/blob/2b42ac580eba23f93c5154572cf7076abd37894c/Aspidites/__main__.py#L154


    argv = sys.argv if not argv else argv
    # any failure results in falling back to the `Cython.Compiler.Options` API
    args, other_args, cy_kwargs = parse_from_dummy(argv, ap.ArgumentParser(add_help=False))
    # TODO: Cython 3.0 arguments clash with Aspidites' ArgumentParser
    args.target, args.output, code = parse_code(args.target, args.output)
    cy_kwargs.update({  # pragma: no cover
        'code': code,

eca86d7c1191cdba27eddfd4034f35e99f3729fe