Skip to content

Commit 1867a3e

Browse files
authored
Merge pull request #3 from python-project-templates/copier-update-2025-04-06T05-21-13
Update from copier (2025-04-06T05:21:13)
2 parents 1450e94 + d9968ca commit 1867a3e

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

.copier-answers.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: '9689455'
2+
_commit: '6957226'
33
_src_path: https://github.com/python-project-templates/base.git
44
add_extension: python
55

.github/workflows/build.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,9 @@ jobs:
3535
steps:
3636
- uses: actions/checkout@v4
3737

38-
- name: Set up Python ${{ matrix.python-version }}
39-
uses: actions/setup-python@v5
38+
- uses: actions-ext/python/setup@main
4039
with:
41-
python-version: ${{ matrix.python-version }}
42-
cache: 'pip'
43-
cache-dependency-path: 'pyproject.toml'
40+
version: ${{ matrix.python-version }}
4441

4542
- name: Install dependencies
4643
run: make develop

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
.PHONY: develop build install
55

66
develop: ## install dependencies and build library
7-
python -m pip install -e .[develop]
7+
uv pip install -e .[develop]
88

99
build: ## build the python library
1010
python -m build -n
1111

1212
install: ## install library
13-
python -m pip install .
13+
uv pip install .
1414

1515
#########
1616
# LINTS #

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ develop = [
4343
"pytest-cov",
4444
"ruff",
4545
"twine",
46+
"uv",
4647
"wheel",
4748
]
4849

0 commit comments

Comments
 (0)