From 30d3997efd6e3e82f9fe7bf10c1a1855b04641f3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 1 Jul 2025 14:53:32 +0000 Subject: [PATCH 1/2] chore(deps): renovate: rbubley/mirrors-prettier to v3.6.2 --- .pre-commit-config.yaml | 2 +- tests/data/test_package_generation/.pre-commit-config.yaml | 2 +- {{cookiecutter.project_slug}}/.pre-commit-config.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e4a73ed6..3d1e5c40 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -32,7 +32,7 @@ repos: additional_dependencies: - pytest - repo: https://github.com/rbubley/mirrors-prettier - rev: v3.5.3 + rev: v3.6.2 hooks: - id: prettier args: diff --git a/tests/data/test_package_generation/.pre-commit-config.yaml b/tests/data/test_package_generation/.pre-commit-config.yaml index 23723775..bdc53235 100644 --- a/tests/data/test_package_generation/.pre-commit-config.yaml +++ b/tests/data/test_package_generation/.pre-commit-config.yaml @@ -23,7 +23,7 @@ repos: hooks: - id: mypy - repo: https://github.com/rbubley/mirrors-prettier - rev: v3.5.3 + rev: v3.6.2 hooks: - id: prettier args: diff --git a/{{cookiecutter.project_slug}}/.pre-commit-config.yaml b/{{cookiecutter.project_slug}}/.pre-commit-config.yaml index 23723775..bdc53235 100644 --- a/{{cookiecutter.project_slug}}/.pre-commit-config.yaml +++ b/{{cookiecutter.project_slug}}/.pre-commit-config.yaml @@ -23,7 +23,7 @@ repos: hooks: - id: mypy - repo: https://github.com/rbubley/mirrors-prettier - rev: v3.5.3 + rev: v3.6.2 hooks: - id: prettier args: From e4bfa544e12b87917b670a93d796ad8edfeec8db Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 1 Jul 2025 18:54:54 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tutorial.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/tutorial.md b/tutorial.md index 0a45d554..4de0c174 100644 --- a/tutorial.md +++ b/tutorial.md @@ -22,7 +22,6 @@ Additionally, [cookiecutter](https://cookiecutter.readthedocs.io) will be requir An easy way to install and manage Python packages is using `uv`, which can create a dedicated environment with the necessary packages installed using the step by step instructions below 1. Open a terminal window - - On Windows: open the Start menu from the taskbar, type `cmd` in the search field, then click [command prompt](https://en.wikipedia.org/wiki/Command-line_interface#Command_prompt) from the results. - On MacOS: click the Launchpad icon in the Dock, type `Terminal` in the search field, then click `Terminal` from the results. - On Linux: open the default terminal application installed in your distribution. @@ -52,7 +51,6 @@ An easy way to install and manage Python packages is using `uv`, which can creat ``` to authenticate the GitHub command line interface tool `gh` with your GitHub account credentials. The tool will ask you a series of question, for most of which you can select the default options by just hitting the `Enter` key. Specifically select: - - `GitHub.com` for account to log into, - `HTTPS` for preferred protocol, - `Y` to authenticate Git with your GitHub credentials, @@ -94,7 +92,6 @@ We will first go through the steps for creating a new package using the `UCL-ARC in both cases replacing `{project_slug}` with the relevant value you used (`python-template` if you used the default values). Some of the key files and directories are - - The `README.md` file which is a Markdown file describing the project and acting as a landing page for first-time users. - The `LICENSE.md` file which contains the terms of the open-source license the code is released under. - The `src` directory which will contain the Python package source code.