diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..3f0a0c98 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,5 @@ +* @a5chin + +.github/ +pyproject.toml +uv.lock diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 03b183b8..1cb31588 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -4,7 +4,7 @@ on: push: branches: [main] paths: - - ".github/actions/setup-python-with-uv" + - ".github/actions/setup-python-with-uv/action.yml" - ".github/workflows/lint.yml" - "**.py" - ".python-version" @@ -16,7 +16,7 @@ on: pull_request: branches: [main] paths: - - ".github/actions/setup-python-with-uv" + - ".github/actions/setup-python-with-uv/action.yml" - ".github/workflows/lint.yml" - "**.py" - ".python-version" diff --git a/LICENSE b/LICENSE index b3b8349b..d5b16e97 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 a5chin +Copyright (c) 2025 a5chin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/noxfile.py b/noxfile.py index 915e92fc..27f700b8 100644 --- a/noxfile.py +++ b/noxfile.py @@ -6,6 +6,7 @@ class CLIArgs( BaseSettings, + cli_parse_args=True, cli_ignore_unknown_args=True, ): """CLIArgs is a class that extends BaseSettings to handle command line arguments."""