From 82d9f4ba75aaa205a966c8c631dcea5f961e9066 Mon Sep 17 00:00:00 2001 From: wpk-nist-gov Date: Fri, 13 Jun 2025 10:01:31 -0400 Subject: [PATCH 01/52] feat: add uv-run hook --- .pre-commit-hooks.yaml | 11 +++++++++++ README.md | 14 ++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index c432d6a..e4f16b4 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -38,3 +38,14 @@ pass_filenames: false stages: [post-checkout, post-merge, post-rewrite] minimum_pre_commit_version: "2.9.2" +- id: uv-run + name: uv-run + description: "Automatically run 'uv run'" + entry: uv run + args: [] + language: python + args: [] + additioinal_dependencies: [] + minimum_pre_commit_version: "2.9.2" + + diff --git a/README.md b/README.md index c4f6c38..f3d1b53 100644 --- a/README.md +++ b/README.md @@ -145,6 +145,20 @@ include it as an additional sync dependency: additional_dependencies: [keyring] ``` +To run an arbitrary script using `uv run`, (e.g., one using [inline script +metadata](https://packaging.python.org/en/latest/specifications/inline-script-metadata/#inline-script-metadata)): + +```yaml +- repo: https://github.com/astral-sh/uv-pre-commit + # uv version. + rev: 0.7.13 + hooks: + - id: uv-run + args: ["--script", "path/to/script.py"] + files: file-pattern-script-depends-on +``` + + ## License uv-pre-commit is licensed under either of From 7339accc99745f81cd05700f31f4b17da6375718 Mon Sep 17 00:00:00 2001 From: wpk-nist-gov Date: Fri, 13 Jun 2025 10:12:32 -0400 Subject: [PATCH 02/52] chore: update uv-run hook make default to use `--no-active` and not to pass filenames --- .pre-commit-hooks.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index e4f16b4..ea06068 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -41,10 +41,10 @@ - id: uv-run name: uv-run description: "Automatically run 'uv run'" - entry: uv run + entry: uv run --no-active args: [] language: python - args: [] + pass_filenames: false additioinal_dependencies: [] minimum_pre_commit_version: "2.9.2" From 914a81a57257087d0f2d7d50b51845070dba4d7c Mon Sep 17 00:00:00 2001 From: wpk-nist-gov Date: Fri, 13 Jun 2025 10:19:04 -0400 Subject: [PATCH 03/52] chore: change wording of uv-run description --- .pre-commit-hooks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index ea06068..cd33758 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -40,7 +40,7 @@ minimum_pre_commit_version: "2.9.2" - id: uv-run name: uv-run - description: "Automatically run 'uv run'" + description: "Automatically run scripts with 'uv run'" entry: uv run --no-active args: [] language: python From 2d6fd4fb0c9f1d7ea960dafa657ab3d1adca16d2 Mon Sep 17 00:00:00 2001 From: wpk-nist-gov Date: Wed, 25 Jun 2025 09:59:54 -0400 Subject: [PATCH 04/52] chore: bump uv version to 0.7.15 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bae262d..ec8d859 100644 --- a/README.md +++ b/README.md @@ -151,7 +151,7 @@ metadata](https://packaging.python.org/en/latest/specifications/inline-script-me ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.13 + rev: 0.7.15 hooks: - id: uv-run args: ["--script", "path/to/script.py"] From 33d92c018abac0723ee8d87c5706b54c4c53f2dd Mon Sep 17 00:00:00 2001 From: zanieb Date: Sat, 28 Jun 2025 00:22:44 +0000 Subject: [PATCH 05/52] Mirror: 0.7.16 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index ec8d859..ca8064c 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.15 + rev: 0.7.16 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.15 + rev: 0.7.16 hooks: - id: uv-export ``` @@ -41,7 +41,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.15 + rev: 0.7.16 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt"] @@ -52,7 +52,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.15 + rev: 0.7.16 hooks: # Run the pip compile - id: pip-compile @@ -64,7 +64,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.15 + rev: 0.7.16 hooks: # Run the pip compile - id: pip-compile @@ -77,7 +77,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.15 + rev: 0.7.16 hooks: # Run the pip compile - id: pip-compile @@ -94,7 +94,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.15 + rev: 0.7.16 hooks: # Update the uv lockfile - id: uv-lock @@ -114,7 +114,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.15 + rev: 0.7.16 hooks: - id: uv-sync ``` @@ -127,7 +127,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.15 + rev: 0.7.16 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -139,7 +139,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.15 + rev: 0.7.16 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 7aa8ec6..4c0f920 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.7.15", + "uv==0.7.16", ] [project.optional-dependencies] From d84bd0981731effa760d55735baf3824ea9ab4f7 Mon Sep 17 00:00:00 2001 From: zanieb Date: Sun, 29 Jun 2025 16:05:09 +0000 Subject: [PATCH 06/52] Mirror: 0.7.17 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index ca8064c..c42e80e 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.16 + rev: 0.7.17 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.16 + rev: 0.7.17 hooks: - id: uv-export ``` @@ -41,7 +41,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.16 + rev: 0.7.17 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt"] @@ -52,7 +52,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.16 + rev: 0.7.17 hooks: # Run the pip compile - id: pip-compile @@ -64,7 +64,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.16 + rev: 0.7.17 hooks: # Run the pip compile - id: pip-compile @@ -77,7 +77,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.16 + rev: 0.7.17 hooks: # Run the pip compile - id: pip-compile @@ -94,7 +94,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.16 + rev: 0.7.17 hooks: # Update the uv lockfile - id: uv-lock @@ -114,7 +114,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.16 + rev: 0.7.17 hooks: - id: uv-sync ``` @@ -127,7 +127,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.16 + rev: 0.7.17 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -139,7 +139,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.16 + rev: 0.7.17 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 4c0f920..e548a86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.7.16", + "uv==0.7.17", ] [project.optional-dependencies] From fe915de0a013940d8c8607853ab6995bd40e0553 Mon Sep 17 00:00:00 2001 From: zanieb Date: Wed, 2 Jul 2025 00:23:32 +0000 Subject: [PATCH 07/52] Mirror: 0.7.18 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index c42e80e..c909909 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.17 + rev: 0.7.18 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.17 + rev: 0.7.18 hooks: - id: uv-export ``` @@ -41,7 +41,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.17 + rev: 0.7.18 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt"] @@ -52,7 +52,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.17 + rev: 0.7.18 hooks: # Run the pip compile - id: pip-compile @@ -64,7 +64,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.17 + rev: 0.7.18 hooks: # Run the pip compile - id: pip-compile @@ -77,7 +77,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.17 + rev: 0.7.18 hooks: # Run the pip compile - id: pip-compile @@ -94,7 +94,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.17 + rev: 0.7.18 hooks: # Update the uv lockfile - id: uv-lock @@ -114,7 +114,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.17 + rev: 0.7.18 hooks: - id: uv-sync ``` @@ -127,7 +127,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.17 + rev: 0.7.18 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -139,7 +139,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.17 + rev: 0.7.18 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index e548a86..8f87cf5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.7.17", + "uv==0.7.18", ] [project.optional-dependencies] From cbdcdfc1da16847cbab4fb1bf37c62d35a2e4478 Mon Sep 17 00:00:00 2001 From: zanieb Date: Thu, 3 Jul 2025 00:24:07 +0000 Subject: [PATCH 08/52] Mirror: 0.7.19 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index c909909..9d54468 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.18 + rev: 0.7.19 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.18 + rev: 0.7.19 hooks: - id: uv-export ``` @@ -41,7 +41,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.18 + rev: 0.7.19 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt"] @@ -52,7 +52,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.18 + rev: 0.7.19 hooks: # Run the pip compile - id: pip-compile @@ -64,7 +64,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.18 + rev: 0.7.19 hooks: # Run the pip compile - id: pip-compile @@ -77,7 +77,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.18 + rev: 0.7.19 hooks: # Run the pip compile - id: pip-compile @@ -94,7 +94,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.18 + rev: 0.7.19 hooks: # Update the uv lockfile - id: uv-lock @@ -114,7 +114,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.18 + rev: 0.7.19 hooks: - id: uv-sync ``` @@ -127,7 +127,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.18 + rev: 0.7.19 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -139,7 +139,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.18 + rev: 0.7.19 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 8f87cf5..6b75d56 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.7.18", + "uv==0.7.19", ] [project.optional-dependencies] From a6c12340a615b67d984fedcb5cc0128645be5e16 Mon Sep 17 00:00:00 2001 From: zanieb Date: Thu, 10 Jul 2025 00:23:51 +0000 Subject: [PATCH 09/52] Mirror: 0.7.20 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 9d54468..9be60df 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.19 + rev: 0.7.20 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.19 + rev: 0.7.20 hooks: - id: uv-export ``` @@ -41,7 +41,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.19 + rev: 0.7.20 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt"] @@ -52,7 +52,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.19 + rev: 0.7.20 hooks: # Run the pip compile - id: pip-compile @@ -64,7 +64,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.19 + rev: 0.7.20 hooks: # Run the pip compile - id: pip-compile @@ -77,7 +77,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.19 + rev: 0.7.20 hooks: # Run the pip compile - id: pip-compile @@ -94,7 +94,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.19 + rev: 0.7.20 hooks: # Update the uv lockfile - id: uv-lock @@ -114,7 +114,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.19 + rev: 0.7.20 hooks: - id: uv-sync ``` @@ -127,7 +127,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.19 + rev: 0.7.20 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -139,7 +139,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.19 + rev: 0.7.20 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 6b75d56..6353d22 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.7.19", + "uv==0.7.20", ] [project.optional-dependencies] From 8981b3cedebac4ca9c1d6df0b8b0302587ba243b Mon Sep 17 00:00:00 2001 From: zanieb Date: Mon, 14 Jul 2025 20:05:37 +0000 Subject: [PATCH 10/52] Mirror: 0.7.21 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 9be60df..422bbf2 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.20 + rev: 0.7.21 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.20 + rev: 0.7.21 hooks: - id: uv-export ``` @@ -41,7 +41,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.20 + rev: 0.7.21 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt"] @@ -52,7 +52,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.20 + rev: 0.7.21 hooks: # Run the pip compile - id: pip-compile @@ -64,7 +64,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.20 + rev: 0.7.21 hooks: # Run the pip compile - id: pip-compile @@ -77,7 +77,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.20 + rev: 0.7.21 hooks: # Run the pip compile - id: pip-compile @@ -94,7 +94,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.20 + rev: 0.7.21 hooks: # Update the uv lockfile - id: uv-lock @@ -114,7 +114,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.20 + rev: 0.7.21 hooks: - id: uv-sync ``` @@ -127,7 +127,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.20 + rev: 0.7.21 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -139,7 +139,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.20 + rev: 0.7.21 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 6353d22..783e115 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.7.20", + "uv==0.7.21", ] [project.optional-dependencies] From 4176797b41561d948a2238b37a049896569c4c2b Mon Sep 17 00:00:00 2001 From: zanieb Date: Thu, 17 Jul 2025 20:05:41 +0000 Subject: [PATCH 11/52] Mirror: 0.7.22 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 422bbf2..62cc6de 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.21 + rev: 0.7.22 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.21 + rev: 0.7.22 hooks: - id: uv-export ``` @@ -41,7 +41,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.21 + rev: 0.7.22 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt"] @@ -52,7 +52,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.21 + rev: 0.7.22 hooks: # Run the pip compile - id: pip-compile @@ -64,7 +64,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.21 + rev: 0.7.22 hooks: # Run the pip compile - id: pip-compile @@ -77,7 +77,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.21 + rev: 0.7.22 hooks: # Run the pip compile - id: pip-compile @@ -94,7 +94,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.21 + rev: 0.7.22 hooks: # Update the uv lockfile - id: uv-lock @@ -114,7 +114,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.21 + rev: 0.7.22 hooks: - id: uv-sync ``` @@ -127,7 +127,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.21 + rev: 0.7.22 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -139,7 +139,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.21 + rev: 0.7.22 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 783e115..e7783c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.7.21", + "uv==0.7.22", ] [project.optional-dependencies] From e92fcea8912adbfd725a1dd07f66ff9b3129a315 Mon Sep 17 00:00:00 2001 From: zanieb Date: Fri, 18 Jul 2025 00:24:10 +0000 Subject: [PATCH 12/52] Mirror: 0.8.0 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 62cc6de..9baf947 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.22 + rev: 0.8.0 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.22 + rev: 0.8.0 hooks: - id: uv-export ``` @@ -41,7 +41,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.22 + rev: 0.8.0 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt"] @@ -52,7 +52,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.22 + rev: 0.8.0 hooks: # Run the pip compile - id: pip-compile @@ -64,7 +64,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.22 + rev: 0.8.0 hooks: # Run the pip compile - id: pip-compile @@ -77,7 +77,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.22 + rev: 0.8.0 hooks: # Run the pip compile - id: pip-compile @@ -94,7 +94,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.22 + rev: 0.8.0 hooks: # Update the uv lockfile - id: uv-lock @@ -114,7 +114,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.22 + rev: 0.8.0 hooks: - id: uv-sync ``` @@ -127,7 +127,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.22 + rev: 0.8.0 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -139,7 +139,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.22 + rev: 0.8.0 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index e7783c9..b91e634 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.7.22", + "uv==0.8.0", ] [project.optional-dependencies] From 371d4b15437635c0edcf8581c609295f82f00bcc Mon Sep 17 00:00:00 2001 From: zanieb Date: Tue, 22 Jul 2025 20:05:54 +0000 Subject: [PATCH 13/52] Mirror: 0.8.1 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 9baf947..fc172e2 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.0 + rev: 0.8.1 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.0 + rev: 0.8.1 hooks: - id: uv-export ``` @@ -41,7 +41,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.0 + rev: 0.8.1 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt"] @@ -52,7 +52,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.0 + rev: 0.8.1 hooks: # Run the pip compile - id: pip-compile @@ -64,7 +64,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.0 + rev: 0.8.1 hooks: # Run the pip compile - id: pip-compile @@ -77,7 +77,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.0 + rev: 0.8.1 hooks: # Run the pip compile - id: pip-compile @@ -94,7 +94,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.0 + rev: 0.8.1 hooks: # Update the uv lockfile - id: uv-lock @@ -114,7 +114,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.0 + rev: 0.8.1 hooks: - id: uv-sync ``` @@ -127,7 +127,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.0 + rev: 0.8.1 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -139,7 +139,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.0 + rev: 0.8.1 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index b91e634..3057ed3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.0", + "uv==0.8.1", ] [project.optional-dependencies] From fd34bd8cdb45e28371bb9df7f08b215e97789d4f Mon Sep 17 00:00:00 2001 From: zanieb Date: Wed, 23 Jul 2025 00:24:52 +0000 Subject: [PATCH 14/52] Mirror: 0.8.2 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index fc172e2..4147f64 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.1 + rev: 0.8.2 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.1 + rev: 0.8.2 hooks: - id: uv-export ``` @@ -41,7 +41,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.1 + rev: 0.8.2 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt"] @@ -52,7 +52,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.1 + rev: 0.8.2 hooks: # Run the pip compile - id: pip-compile @@ -64,7 +64,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.1 + rev: 0.8.2 hooks: # Run the pip compile - id: pip-compile @@ -77,7 +77,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.1 + rev: 0.8.2 hooks: # Run the pip compile - id: pip-compile @@ -94,7 +94,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.1 + rev: 0.8.2 hooks: # Update the uv lockfile - id: uv-lock @@ -114,7 +114,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.1 + rev: 0.8.2 hooks: - id: uv-sync ``` @@ -127,7 +127,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.1 + rev: 0.8.2 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -139,7 +139,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.1 + rev: 0.8.2 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 3057ed3..b6e9608 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.1", + "uv==0.8.2", ] [project.optional-dependencies] From 1356154298f14fcbf04bfcda830dd968f08017e9 Mon Sep 17 00:00:00 2001 From: zanieb Date: Fri, 25 Jul 2025 00:25:05 +0000 Subject: [PATCH 15/52] Mirror: 0.8.3 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 4147f64..a40ac8a 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.2 + rev: 0.8.3 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.2 + rev: 0.8.3 hooks: - id: uv-export ``` @@ -41,7 +41,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.2 + rev: 0.8.3 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt"] @@ -52,7 +52,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.2 + rev: 0.8.3 hooks: # Run the pip compile - id: pip-compile @@ -64,7 +64,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.2 + rev: 0.8.3 hooks: # Run the pip compile - id: pip-compile @@ -77,7 +77,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.2 + rev: 0.8.3 hooks: # Run the pip compile - id: pip-compile @@ -94,7 +94,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.2 + rev: 0.8.3 hooks: # Update the uv lockfile - id: uv-lock @@ -114,7 +114,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.2 + rev: 0.8.3 hooks: - id: uv-sync ``` @@ -127,7 +127,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.2 + rev: 0.8.3 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -139,7 +139,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.2 + rev: 0.8.3 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index b6e9608..244d638 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.2", + "uv==0.8.3", ] [project.optional-dependencies] From ed4cbbe1633a521dab0b5866b6d94dc5ea9c7d69 Mon Sep 17 00:00:00 2001 From: wpk-nist-gov Date: Mon, 28 Jul 2025 09:08:42 -0400 Subject: [PATCH 16/52] chore: fixed typo --- .pre-commit-hooks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index cd33758..f86bb95 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -45,7 +45,7 @@ args: [] language: python pass_filenames: false - additioinal_dependencies: [] + additional_dependencies: [] minimum_pre_commit_version: "2.9.2" From c5f08ca2e2da6e99f46cfe9cb0008ff248cdad59 Mon Sep 17 00:00:00 2001 From: wpk-nist-gov Date: Mon, 28 Jul 2025 09:09:52 -0400 Subject: [PATCH 17/52] chore: update version to 0.8.3 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a40ac8a..f90f810 100644 --- a/README.md +++ b/README.md @@ -151,7 +151,7 @@ metadata](https://packaging.python.org/en/latest/specifications/inline-script-me ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.7.15 + rev: 0.8.3 hooks: - id: uv-run args: ["--script", "path/to/script.py"] From 56a1f0b2b882f2e55c46bb79476fbd5dbf54be94 Mon Sep 17 00:00:00 2001 From: zanieb Date: Wed, 30 Jul 2025 20:05:07 +0000 Subject: [PATCH 18/52] Mirror: 0.8.4 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index f90f810..507397c 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.3 + rev: 0.8.4 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.3 + rev: 0.8.4 hooks: - id: uv-export ``` @@ -41,7 +41,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.3 + rev: 0.8.4 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt"] @@ -52,7 +52,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.3 + rev: 0.8.4 hooks: # Run the pip compile - id: pip-compile @@ -64,7 +64,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.3 + rev: 0.8.4 hooks: # Run the pip compile - id: pip-compile @@ -77,7 +77,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.3 + rev: 0.8.4 hooks: # Run the pip compile - id: pip-compile @@ -94,7 +94,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.3 + rev: 0.8.4 hooks: # Update the uv lockfile - id: uv-lock @@ -114,7 +114,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.3 + rev: 0.8.4 hooks: - id: uv-sync ``` @@ -127,7 +127,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.3 + rev: 0.8.4 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -139,7 +139,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.3 + rev: 0.8.4 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 244d638..8699f5e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.3", + "uv==0.8.4", ] [project.optional-dependencies] From b887cda7a4cc0e51aac6deb94873aaf635857c98 Mon Sep 17 00:00:00 2001 From: Edoardo Abati <29585319+EdAbati@users.noreply.github.com> Date: Fri, 1 Aug 2025 15:45:14 +0200 Subject: [PATCH 19/52] Use `--quiet` by default in `uv-export` (#55) Hi, First time interacting with a `astral-sh` repo, so first of all thank you very much for developing amazing tools like `uv` an `ruff`. :) In this PR, I am proposing to use the quiet output by default in the `uv-export` hook. Currently the hook will also print the whole export. This output (which also includes hashes) that can quickly become very very long and therefore it makes it harder to inspect the rest of `pre-commit` results. IMO verbose outputs in `pre-commit` hooks make sense when they show specific actionable errors (e.g. `ruff` or typing errors). In this case, the hook could simplify just fail and regenerate the file: ```console $ pre-commit run --all-files trim trailing whitespace.................................................Passed fix end of files.........................................................Passed check toml...............................................................Passed check yaml...............................................................Passed check json...............................................................Passed check for merge conflicts................................................Passed check for added large files..............................................Passed debug statements (python)................................................Passed detect private key.......................................................Passed ruff.....................................................................Passed uv-export................................................................Failed - hook id: uv-export - files were modified by this hook ``` This is a bit of personal preference I guess, so happy to close this PR if you don't agree :) --- .pre-commit-hooks.yaml | 2 +- README.md | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index f86bb95..e08b530 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -24,7 +24,7 @@ entry: uv export language: python files: ^uv\.lock$ - args: ["--frozen", "--output-file=requirements.txt"] + args: ["--frozen", "--output-file=requirements.txt", "--quiet"] pass_filenames: false additional_dependencies: [] minimum_pre_commit_version: "2.9.2" diff --git a/README.md b/README.md index 507397c..6066a55 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,8 @@ To autoexport `uv.lock` to `requirements.txt`: - id: uv-export ``` +By default, this hook uses the ["quiet" output](https://docs.astral.sh/uv/reference/cli/#uv-export--quiet). + To export to an alternative file, modify the `args`: ```yaml @@ -44,7 +46,7 @@ To export to an alternative file, modify the `args`: rev: 0.8.4 hooks: - id: uv-export - args: ["--frozen", "--output-file=requirements-custom.txt"] + args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] ``` To compile your requirements via pre-commit, add the following to your `.pre-commit-config.yaml`: From 9c58bdc42d5e8f9f55b82731fed9cfa015679cd9 Mon Sep 17 00:00:00 2001 From: zanieb Date: Wed, 6 Aug 2025 00:25:23 +0000 Subject: [PATCH 20/52] Mirror: 0.8.5 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 6066a55..d4d2630 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.4 + rev: 0.8.5 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.4 + rev: 0.8.5 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.4 + rev: 0.8.5 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.4 + rev: 0.8.5 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.4 + rev: 0.8.5 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.4 + rev: 0.8.5 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.4 + rev: 0.8.5 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.4 + rev: 0.8.5 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.4 + rev: 0.8.5 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.4 + rev: 0.8.5 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 8699f5e..3572620 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.4", + "uv==0.8.5", ] [project.optional-dependencies] From 7263e3eb9a99ace20a33f937b2b3d0a698229256 Mon Sep 17 00:00:00 2001 From: zanieb Date: Thu, 7 Aug 2025 16:06:35 +0000 Subject: [PATCH 21/52] Mirror: 0.8.6 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index d4d2630..46e8887 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.5 + rev: 0.8.6 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.5 + rev: 0.8.6 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.5 + rev: 0.8.6 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.5 + rev: 0.8.6 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.5 + rev: 0.8.6 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.5 + rev: 0.8.6 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.5 + rev: 0.8.6 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.5 + rev: 0.8.6 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.5 + rev: 0.8.6 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.5 + rev: 0.8.6 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 3572620..f2ccfed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.5", + "uv==0.8.6", ] [project.optional-dependencies] From 21aa2bc3bab93db2c775fe998e17f396d1e7ca13 Mon Sep 17 00:00:00 2001 From: zanieb Date: Sat, 9 Aug 2025 00:23:03 +0000 Subject: [PATCH 22/52] Mirror: 0.8.7 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 46e8887..9eb6938 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.6 + rev: 0.8.7 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.6 + rev: 0.8.7 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.6 + rev: 0.8.7 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.6 + rev: 0.8.7 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.6 + rev: 0.8.7 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.6 + rev: 0.8.7 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.6 + rev: 0.8.7 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.6 + rev: 0.8.7 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.6 + rev: 0.8.7 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.6 + rev: 0.8.7 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index f2ccfed..663e19d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.6", + "uv==0.8.7", ] [project.optional-dependencies] From 5c60025cec8439735c1beab508932f4a0bd0da57 Mon Sep 17 00:00:00 2001 From: zanieb Date: Sat, 9 Aug 2025 04:11:20 +0000 Subject: [PATCH 23/52] Mirror: 0.8.8 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 9eb6938..20ebc95 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.7 + rev: 0.8.8 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.7 + rev: 0.8.8 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.7 + rev: 0.8.8 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.7 + rev: 0.8.8 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.7 + rev: 0.8.8 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.7 + rev: 0.8.8 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.7 + rev: 0.8.8 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.7 + rev: 0.8.8 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.7 + rev: 0.8.8 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.7 + rev: 0.8.8 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 663e19d..10b2603 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.7", + "uv==0.8.8", ] [project.optional-dependencies] From 614228f68b5f7023a1dadcebfeb1f5fc651111e3 Mon Sep 17 00:00:00 2001 From: zanieb Date: Tue, 12 Aug 2025 04:10:27 +0000 Subject: [PATCH 24/52] Mirror: 0.8.9 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 20ebc95..96c07fa 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.8 + rev: 0.8.9 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.8 + rev: 0.8.9 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.8 + rev: 0.8.9 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.8 + rev: 0.8.9 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.8 + rev: 0.8.9 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.8 + rev: 0.8.9 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.8 + rev: 0.8.9 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.8 + rev: 0.8.9 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.8 + rev: 0.8.9 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.8 + rev: 0.8.9 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 10b2603..df11f93 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.8", + "uv==0.8.9", ] [project.optional-dependencies] From d0c9c64219cbe1d8fe1c048ef3e8178424b6bfd9 Mon Sep 17 00:00:00 2001 From: zanieb Date: Thu, 14 Aug 2025 00:23:34 +0000 Subject: [PATCH 25/52] Mirror: 0.8.10 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 96c07fa..aedf81e 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.9 + rev: 0.8.10 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.9 + rev: 0.8.10 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.9 + rev: 0.8.10 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.9 + rev: 0.8.10 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.9 + rev: 0.8.10 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.9 + rev: 0.8.10 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.9 + rev: 0.8.10 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.9 + rev: 0.8.10 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.9 + rev: 0.8.10 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.9 + rev: 0.8.10 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index df11f93..72d8209 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.9", + "uv==0.8.10", ] [project.optional-dependencies] From 062fc1f6d5ca369820445e6096bd83449a138a40 Mon Sep 17 00:00:00 2001 From: zanieb Date: Thu, 14 Aug 2025 20:06:02 +0000 Subject: [PATCH 26/52] Mirror: 0.8.11 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index aedf81e..a23bda9 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.10 + rev: 0.8.11 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.10 + rev: 0.8.11 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.10 + rev: 0.8.11 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.10 + rev: 0.8.11 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.10 + rev: 0.8.11 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.10 + rev: 0.8.11 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.10 + rev: 0.8.11 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.10 + rev: 0.8.11 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.10 + rev: 0.8.11 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.10 + rev: 0.8.11 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 72d8209..841e27d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.10", + "uv==0.8.11", ] [project.optional-dependencies] From 9b7b2589d49173b096dcd136ad173a93da6416b5 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Fri, 15 Aug 2025 14:48:49 -0400 Subject: [PATCH 27/52] chore(ci): add Dependabot config, pin some workflows (#57) Fixes two minor pins, adds a Dependabot config that'll keep GHA updated. No functional changes. Signed-off-by: William Woodruff --- .github/dependabot.yml | 10 ++++++++++ .github/workflows/main.yml | 6 ++++-- 2 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..6c5049e --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + groups: + github-actions: + patterns: + - "*" diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d13b72c..d757af0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,9 +16,11 @@ jobs: - if: ${{ startsWith(github.event_name, 'repository_dispatch') }} run: sleep 30 - - uses: actions/checkout@v4 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 + with: + persist-credentials: false - - uses: actions/setup-python@v5 + - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 with: python-version: "3.11" cache: pip From 27051f7c4752f8b22b2018de592001c6f5dc8f6b Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Tue, 19 Aug 2025 11:11:36 -0400 Subject: [PATCH 28/52] fix(ci): enable persist-credentials (#58) Per https://github.com/astral-sh/uv-pre-commit/pull/57#issuecomment-3199589061. Signed-off-by: William Woodruff --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d757af0..bc2ff41 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: - persist-credentials: false + persist-credentials: true # needed to push commits below - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 with: From b5704afcba6812d470f2df383fb7d9793910f62a Mon Sep 17 00:00:00 2001 From: zanieb Date: Tue, 19 Aug 2025 15:12:17 +0000 Subject: [PATCH 29/52] Mirror: 0.8.12 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index a23bda9..e49fa3f 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.11 + rev: 0.8.12 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.11 + rev: 0.8.12 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.11 + rev: 0.8.12 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.11 + rev: 0.8.12 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.11 + rev: 0.8.12 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.11 + rev: 0.8.12 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.11 + rev: 0.8.12 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.11 + rev: 0.8.12 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.11 + rev: 0.8.12 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.11 + rev: 0.8.12 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 841e27d..9f62c75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.11", + "uv==0.8.12", ] [project.optional-dependencies] From 365fddc41ef9090d3c8cb4e806d732f9e147d9b0 Mon Sep 17 00:00:00 2001 From: zanieb Date: Thu, 21 Aug 2025 20:07:38 +0000 Subject: [PATCH 30/52] Mirror: 0.8.13 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index e49fa3f..6224ea0 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.12 + rev: 0.8.13 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.12 + rev: 0.8.13 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.12 + rev: 0.8.13 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.12 + rev: 0.8.13 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.12 + rev: 0.8.13 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.12 + rev: 0.8.13 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.12 + rev: 0.8.13 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.12 + rev: 0.8.13 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.12 + rev: 0.8.13 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.12 + rev: 0.8.13 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 9f62c75..9c1f57a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.12", + "uv==0.8.13", ] [project.optional-dependencies] From 3cefa1b81f512e2cdbceffb897a09afb8207b6c3 Mon Sep 17 00:00:00 2001 From: zanieb Date: Fri, 29 Aug 2025 00:22:00 +0000 Subject: [PATCH 31/52] Mirror: 0.8.14 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 6224ea0..faab339 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.13 + rev: 0.8.14 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.13 + rev: 0.8.14 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.13 + rev: 0.8.14 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.13 + rev: 0.8.14 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.13 + rev: 0.8.14 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.13 + rev: 0.8.14 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.13 + rev: 0.8.14 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.13 + rev: 0.8.14 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.13 + rev: 0.8.14 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.13 + rev: 0.8.14 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 9c1f57a..815c208 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.13", + "uv==0.8.14", ] [project.optional-dependencies] From 89968d665a24a4aaa4278d2fdb652db293ca22c8 Mon Sep 17 00:00:00 2001 From: zanieb Date: Wed, 3 Sep 2025 16:05:55 +0000 Subject: [PATCH 32/52] Mirror: 0.8.15 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index faab339..bfa8c0c 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.14 + rev: 0.8.15 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.14 + rev: 0.8.15 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.14 + rev: 0.8.15 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.14 + rev: 0.8.15 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.14 + rev: 0.8.15 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.14 + rev: 0.8.15 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.14 + rev: 0.8.15 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.14 + rev: 0.8.15 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.14 + rev: 0.8.15 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.14 + rev: 0.8.15 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 815c208..4fded7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.14", + "uv==0.8.15", ] [project.optional-dependencies] From c0a9ac0ce850cdc23c9c2f23a2ce85a97b1af0c8 Mon Sep 17 00:00:00 2001 From: zanieb Date: Wed, 10 Sep 2025 04:05:59 +0000 Subject: [PATCH 33/52] Mirror: 0.8.16 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index bfa8c0c..729540c 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.15 + rev: 0.8.16 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.15 + rev: 0.8.16 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.15 + rev: 0.8.16 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.15 + rev: 0.8.16 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.15 + rev: 0.8.16 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.15 + rev: 0.8.16 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.15 + rev: 0.8.16 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.15 + rev: 0.8.16 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.15 + rev: 0.8.16 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.15 + rev: 0.8.16 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 4fded7d..b5eefe5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.15", + "uv==0.8.16", ] [project.optional-dependencies] From 04b3e7cbd19726233587fddcd683554ccd6d00e3 Mon Sep 17 00:00:00 2001 From: zanieb Date: Thu, 11 Sep 2025 00:21:44 +0000 Subject: [PATCH 34/52] Mirror: 0.8.17 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 729540c..527fa4a 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.16 + rev: 0.8.17 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.16 + rev: 0.8.17 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.16 + rev: 0.8.17 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.16 + rev: 0.8.17 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.16 + rev: 0.8.17 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.16 + rev: 0.8.17 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.16 + rev: 0.8.17 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.16 + rev: 0.8.17 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.16 + rev: 0.8.17 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.16 + rev: 0.8.17 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index b5eefe5..7f2a22b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.16", + "uv==0.8.17", ] [project.optional-dependencies] From 0cf0b17e4838704051cb0845d031fd7cb7d18ad2 Mon Sep 17 00:00:00 2001 From: zanieb Date: Thu, 18 Sep 2025 00:21:05 +0000 Subject: [PATCH 35/52] Mirror: 0.8.18 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 527fa4a..171abc0 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.17 + rev: 0.8.18 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.17 + rev: 0.8.18 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.17 + rev: 0.8.18 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.17 + rev: 0.8.18 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.17 + rev: 0.8.18 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.17 + rev: 0.8.18 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.17 + rev: 0.8.18 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.17 + rev: 0.8.18 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.17 + rev: 0.8.18 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.17 + rev: 0.8.18 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 7f2a22b..b28c644 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.17", + "uv==0.8.18", ] [project.optional-dependencies] From 0cbd5eb39f1a936b656ed950c9c3a41be48923e2 Mon Sep 17 00:00:00 2001 From: zanieb Date: Sat, 20 Sep 2025 00:20:20 +0000 Subject: [PATCH 36/52] Mirror: 0.8.19 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 171abc0..5a01c2e 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.18 + rev: 0.8.19 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.18 + rev: 0.8.19 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.18 + rev: 0.8.19 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.18 + rev: 0.8.19 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.18 + rev: 0.8.19 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.18 + rev: 0.8.19 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.18 + rev: 0.8.19 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.18 + rev: 0.8.19 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.18 + rev: 0.8.19 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.18 + rev: 0.8.19 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index b28c644..06f9050 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.18", + "uv==0.8.19", ] [project.optional-dependencies] From 0a83bf5c785f60af3169cc6ef99f2d7bb858bb60 Mon Sep 17 00:00:00 2001 From: zanieb Date: Tue, 23 Sep 2025 00:21:35 +0000 Subject: [PATCH 37/52] Mirror: 0.8.20 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 5a01c2e..b56aaaf 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.19 + rev: 0.8.20 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.19 + rev: 0.8.20 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.19 + rev: 0.8.20 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.19 + rev: 0.8.20 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.19 + rev: 0.8.20 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.19 + rev: 0.8.20 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.19 + rev: 0.8.20 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.19 + rev: 0.8.20 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.19 + rev: 0.8.20 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.19 + rev: 0.8.20 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 06f9050..48b84a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.19", + "uv==0.8.20", ] [project.optional-dependencies] From 79397b230483da456db1f13727da4e57669f5b5f Mon Sep 17 00:00:00 2001 From: zanieb Date: Tue, 23 Sep 2025 16:06:50 +0000 Subject: [PATCH 38/52] Mirror: 0.8.21 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index b56aaaf..2a3435e 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.20 + rev: 0.8.21 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.20 + rev: 0.8.21 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.20 + rev: 0.8.21 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.20 + rev: 0.8.21 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.20 + rev: 0.8.21 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.20 + rev: 0.8.21 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.20 + rev: 0.8.21 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.20 + rev: 0.8.21 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.20 + rev: 0.8.21 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.20 + rev: 0.8.21 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 48b84a5..2a165a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.20", + "uv==0.8.21", ] [project.optional-dependencies] From 63d86e065c766397371d857fa654260b613905e2 Mon Sep 17 00:00:00 2001 From: zanieb Date: Wed, 24 Sep 2025 00:21:39 +0000 Subject: [PATCH 39/52] Mirror: 0.8.22 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 2a3435e..de4e07e 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.21 + rev: 0.8.22 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.21 + rev: 0.8.22 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.21 + rev: 0.8.22 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.21 + rev: 0.8.22 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.21 + rev: 0.8.22 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.21 + rev: 0.8.22 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.21 + rev: 0.8.22 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.21 + rev: 0.8.22 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.21 + rev: 0.8.22 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.21 + rev: 0.8.22 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 2a165a9..8e8e13a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.21", + "uv==0.8.22", ] [project.optional-dependencies] From 9c0b22c0b161d5171ea9c00ca4742e709346ca29 Mon Sep 17 00:00:00 2001 From: zanieb Date: Sat, 4 Oct 2025 20:04:43 +0000 Subject: [PATCH 40/52] Mirror: 0.8.23 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index de4e07e..b59393f 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.22 + rev: 0.8.23 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.22 + rev: 0.8.23 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.22 + rev: 0.8.23 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.22 + rev: 0.8.23 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.22 + rev: 0.8.23 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.22 + rev: 0.8.23 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.22 + rev: 0.8.23 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.22 + rev: 0.8.23 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.22 + rev: 0.8.23 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.22 + rev: 0.8.23 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 8e8e13a..31f74b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.22", + "uv==0.8.23", ] [project.optional-dependencies] From 3099aeb16e1b2c06c7635026f784e1c92e71bc0a Mon Sep 17 00:00:00 2001 From: zanieb Date: Tue, 7 Oct 2025 04:06:02 +0000 Subject: [PATCH 41/52] Mirror: 0.8.24 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index b59393f..99724e5 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.23 + rev: 0.8.24 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.23 + rev: 0.8.24 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.23 + rev: 0.8.24 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.23 + rev: 0.8.24 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.23 + rev: 0.8.24 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.23 + rev: 0.8.24 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.23 + rev: 0.8.24 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.23 + rev: 0.8.24 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.23 + rev: 0.8.24 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.23 + rev: 0.8.24 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 31f74b6..bd0599e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.23", + "uv==0.8.24", ] [project.optional-dependencies] From 8b850b4462cae6db1dd7342a0436b48f5454c773 Mon Sep 17 00:00:00 2001 From: zanieb Date: Wed, 8 Oct 2025 00:21:17 +0000 Subject: [PATCH 42/52] Mirror: 0.9.0 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 99724e5..0b0eed0 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.24 + rev: 0.9.0 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.24 + rev: 0.9.0 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.24 + rev: 0.9.0 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.24 + rev: 0.9.0 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.24 + rev: 0.9.0 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.24 + rev: 0.9.0 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.24 + rev: 0.9.0 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.24 + rev: 0.9.0 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.24 + rev: 0.9.0 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.24 + rev: 0.9.0 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index bd0599e..f289cfb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.8.24", + "uv==0.9.0", ] [project.optional-dependencies] From 79d315fa890fe615807d3a43c6aff27b6ac9f8ec Mon Sep 17 00:00:00 2001 From: zanieb Date: Thu, 9 Oct 2025 20:05:34 +0000 Subject: [PATCH 43/52] Mirror: 0.9.1 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 0b0eed0..27a5cf5 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.0 + rev: 0.9.1 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.0 + rev: 0.9.1 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.0 + rev: 0.9.1 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.0 + rev: 0.9.1 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.0 + rev: 0.9.1 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.0 + rev: 0.9.1 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.0 + rev: 0.9.1 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.0 + rev: 0.9.1 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.0 + rev: 0.9.1 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.0 + rev: 0.9.1 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index f289cfb..275b776 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.9.0", + "uv==0.9.1", ] [project.optional-dependencies] From f7e617fb7e6c775e83d7c6c43b018813c3b21741 Mon Sep 17 00:00:00 2001 From: zanieb Date: Fri, 10 Oct 2025 20:05:14 +0000 Subject: [PATCH 44/52] Mirror: 0.9.2 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 27a5cf5..b7bcd86 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.1 + rev: 0.9.2 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.1 + rev: 0.9.2 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.1 + rev: 0.9.2 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.1 + rev: 0.9.2 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.1 + rev: 0.9.2 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.1 + rev: 0.9.2 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.1 + rev: 0.9.2 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.1 + rev: 0.9.2 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.1 + rev: 0.9.2 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.1 + rev: 0.9.2 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 275b776..c027e02 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.9.1", + "uv==0.9.2", ] [project.optional-dependencies] From fd461fd052f189b347fdde7480fe2a5a0168cf92 Mon Sep 17 00:00:00 2001 From: zanieb Date: Wed, 15 Oct 2025 16:05:26 +0000 Subject: [PATCH 45/52] Mirror: 0.9.3 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index b7bcd86..b70866a 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.2 + rev: 0.9.3 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.2 + rev: 0.9.3 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.2 + rev: 0.9.3 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.2 + rev: 0.9.3 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.2 + rev: 0.9.3 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.2 + rev: 0.9.3 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.2 + rev: 0.9.3 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.2 + rev: 0.9.3 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.2 + rev: 0.9.3 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.2 + rev: 0.9.3 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index c027e02..05c9785 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.9.2", + "uv==0.9.3", ] [project.optional-dependencies] From 677e25cd57e760c491c8794dc2eda56bb1e89c39 Mon Sep 17 00:00:00 2001 From: zanieb Date: Sun, 19 Oct 2025 00:24:47 +0000 Subject: [PATCH 46/52] Mirror: 0.9.4 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index b70866a..3636c9e 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.3 + rev: 0.9.4 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.3 + rev: 0.9.4 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.3 + rev: 0.9.4 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.3 + rev: 0.9.4 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.3 + rev: 0.9.4 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.3 + rev: 0.9.4 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.3 + rev: 0.9.4 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.3 + rev: 0.9.4 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.3 + rev: 0.9.4 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.3 + rev: 0.9.4 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 05c9785..5be6dd8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.9.3", + "uv==0.9.4", ] [project.optional-dependencies] From 88c9430bd7579d318f1a92446a25a3c59e932cae Mon Sep 17 00:00:00 2001 From: zanieb Date: Tue, 21 Oct 2025 20:05:56 +0000 Subject: [PATCH 47/52] Mirror: 0.9.5 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 3636c9e..758ed2d 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.4 + rev: 0.9.5 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.4 + rev: 0.9.5 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.4 + rev: 0.9.5 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.4 + rev: 0.9.5 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.4 + rev: 0.9.5 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.4 + rev: 0.9.5 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.4 + rev: 0.9.5 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.4 + rev: 0.9.5 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.4 + rev: 0.9.5 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.4 + rev: 0.9.5 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 5be6dd8..fe2f159 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.9.4", + "uv==0.9.5", ] [project.optional-dependencies] From f0a23fd4f64531ea401cb7a539013b24e948bd82 Mon Sep 17 00:00:00 2001 From: zanieb Date: Wed, 29 Oct 2025 20:05:35 +0000 Subject: [PATCH 48/52] Mirror: 0.9.6 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 758ed2d..fecfc09 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.5 + rev: 0.9.6 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.5 + rev: 0.9.6 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.5 + rev: 0.9.6 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.5 + rev: 0.9.6 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.5 + rev: 0.9.6 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.5 + rev: 0.9.6 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.5 + rev: 0.9.6 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.5 + rev: 0.9.6 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.5 + rev: 0.9.6 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.5 + rev: 0.9.6 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index fe2f159..af69b8c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.9.5", + "uv==0.9.6", ] [project.optional-dependencies] From 21816f5610800e57e420ac1a68f9d42fae8df2b2 Mon Sep 17 00:00:00 2001 From: zanieb Date: Fri, 31 Oct 2025 00:22:41 +0000 Subject: [PATCH 49/52] Mirror: 0.9.7 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index fecfc09..5a9c220 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.6 + rev: 0.9.7 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.6 + rev: 0.9.7 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.6 + rev: 0.9.7 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.6 + rev: 0.9.7 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.6 + rev: 0.9.7 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.6 + rev: 0.9.7 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.6 + rev: 0.9.7 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.6 + rev: 0.9.7 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.6 + rev: 0.9.7 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.6 + rev: 0.9.7 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index af69b8c..c9e7d23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.9.6", + "uv==0.9.7", ] [project.optional-dependencies] From a5fbe4fd6251f956803950f8f0afdab36c608f50 Mon Sep 17 00:00:00 2001 From: zanieb Date: Sat, 8 Nov 2025 00:21:30 +0000 Subject: [PATCH 50/52] Mirror: 0.9.8 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 5a9c220..581f524 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.7 + rev: 0.9.8 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.7 + rev: 0.9.8 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.7 + rev: 0.9.8 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.7 + rev: 0.9.8 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.7 + rev: 0.9.8 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.7 + rev: 0.9.8 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.7 + rev: 0.9.8 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.7 + rev: 0.9.8 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.7 + rev: 0.9.8 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.7 + rev: 0.9.8 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index c9e7d23..4ef97b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.9.7", + "uv==0.9.8", ] [project.optional-dependencies] From f96d2c7eca088acdddba2e603915aac08fde8c53 Mon Sep 17 00:00:00 2001 From: zanieb Date: Wed, 12 Nov 2025 20:05:42 +0000 Subject: [PATCH 51/52] Mirror: 0.9.9 --- README.md | 20 ++++++++++---------- pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 581f524..6cf1194 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.8 + rev: 0.9.9 hooks: # Update the uv lockfile - id: uv-lock @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.8 + rev: 0.9.9 hooks: - id: uv-export ``` @@ -43,7 +43,7 @@ To export to an alternative file, modify the `args`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.8 + rev: 0.9.9 hooks: - id: uv-export args: ["--frozen", "--output-file=requirements-custom.txt", "--quiet"] @@ -54,7 +54,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.8 + rev: 0.9.9 hooks: # Run the pip compile - id: pip-compile @@ -66,7 +66,7 @@ To compile alternative files, modify the `args` and `files`: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.8 + rev: 0.9.9 hooks: # Run the pip compile - id: pip-compile @@ -79,7 +79,7 @@ To run the hook over multiple files at the same time: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.8 + rev: 0.9.9 hooks: # Run the pip compile - id: pip-compile @@ -96,7 +96,7 @@ To run a hook on a project within a subdirectory (i.e., in a monorepo): ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.8 + rev: 0.9.9 hooks: # Update the uv lockfile - id: uv-lock @@ -116,7 +116,7 @@ default_install_hook_types: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.8 + rev: 0.9.9 hooks: - id: uv-sync ``` @@ -129,7 +129,7 @@ To synchronize all dependencies in a workspace: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.8 + rev: 0.9.9 hooks: - id: uv-sync args: ["--locked", "--all-packages"] @@ -141,7 +141,7 @@ include it as an additional sync dependency: ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.8 + rev: 0.9.9 hooks: - id: uv-sync additional_dependencies: [keyring] diff --git a/pyproject.toml b/pyproject.toml index 4ef97b8..a5e376d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "uv-pre-commit" version = "0.0.0" dependencies = [ - "uv==0.9.8", + "uv==0.9.9", ] [project.optional-dependencies] From d30b4298e4fb63ce8609e29acdbcf4c9018a483c Mon Sep 17 00:00:00 2001 From: wpk-nist-gov Date: Thu, 13 Nov 2025 09:39:55 -0500 Subject: [PATCH 52/52] chore: rebase from main --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6cf1194..2e01698 100644 --- a/README.md +++ b/README.md @@ -153,7 +153,7 @@ metadata](https://packaging.python.org/en/latest/specifications/inline-script-me ```yaml - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.8.3 + rev: 0.9.9 hooks: - id: uv-run args: ["--script", "path/to/script.py"]