From d9968ca735f5ca6de23d7ab1eacbc0a7147cd4f5 Mon Sep 17 00:00:00 2001
From: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Date: Sun, 6 Apr 2025 05:21:13 +0000
Subject: [PATCH] Update from copier (2025-04-06T05:21:13)

---
 .copier-answers.yml         | 2 +-
 .github/workflows/build.yml | 7 ++-----
 Makefile                    | 4 ++--
 pyproject.toml              | 1 +
 4 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/.copier-answers.yml b/.copier-answers.yml
index 86c8264..fe66b00 100644
--- a/.copier-answers.yml
+++ b/.copier-answers.yml
@@ -1,5 +1,5 @@
 # Changes here will be overwritten by Copier
-_commit: '9689455'
+_commit: '6957226'
 _src_path: https://github.com/python-project-templates/base.git
 add_extension: python
 email: t.paine154@gmail.com
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 2c20369..109d0d0 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -35,12 +35,9 @@ jobs:
     steps:
     - uses: actions/checkout@v4
 
-    - name: Set up Python ${{ matrix.python-version }}
-      uses: actions/setup-python@v5
+    - uses: actions-ext/python/setup@main
       with:
-        python-version: ${{ matrix.python-version }}
-        cache: 'pip'
-        cache-dependency-path: 'pyproject.toml'
+        version: ${{ matrix.python-version }}
 
     - name: Install dependencies
       run: make develop
diff --git a/Makefile b/Makefile
index 1189085..b403dc7 100644
--- a/Makefile
+++ b/Makefile
@@ -4,13 +4,13 @@
 .PHONY: develop build install
 
 develop:  ## install dependencies and build library
-	python -m pip install -e .[develop]
+	uv pip install -e .[develop]
 
 build:  ## build the python library
 	python -m build -n
 
 install:  ## install library
-	python -m pip install .
+	uv pip install .
 
 #########
 # LINTS #
diff --git a/pyproject.toml b/pyproject.toml
index bb7e1e8..b4fd134 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -43,6 +43,7 @@ develop = [
     "pytest-cov",
     "ruff",
     "twine",
+    "uv",
     "wheel",
 ]