From 4cd7eb0890bcf12cc358a347cf851899c850fc6b Mon Sep 17 00:00:00 2001 From: drewoldag <47493171+drewoldag@users.noreply.github.com> Date: Thu, 6 Jul 2023 11:10:27 -0700 Subject: [PATCH 1/2] Updating the revision of the pre-commit hook that checks the version of the template being used. --- python-project-template/.pre-commit-config.yaml.jinja | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-project-template/.pre-commit-config.yaml.jinja b/python-project-template/.pre-commit-config.yaml.jinja index 0997aaaa..201d44fa 100644 --- a/python-project-template/.pre-commit-config.yaml.jinja +++ b/python-project-template/.pre-commit-config.yaml.jinja @@ -4,7 +4,7 @@ repos: # This hook should always pass. It will print a message if the local version # is out of date. - repo: https://github.com/lincc-frameworks/pre-commit-hooks - rev: v0.1 + rev: v0.1.1 hooks: - id: check-lincc-frameworks-template-version name: Check template version From aa6e4fecb0436a6d8fe22623a2b4d0c858864769 Mon Sep 17 00:00:00 2001 From: drewoldag <47493171+drewoldag@users.noreply.github.com> Date: Thu, 6 Jul 2023 11:40:45 -0700 Subject: [PATCH 2/2] Addressing a breaking change in Pydantic that causes Copier to fail. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69f9e0f9..ab7278f5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -88,6 +88,7 @@ jobs: sudo apt-get update python -m pip install --upgrade pip python -m pip install copier mypy + python -m pip install -U 'pydantic<2' - name: Generate package run: |