File tree 4 files changed +6
-8
lines changed
4 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Changes here will be overwritten by Copier
2
- _commit : ' 9689455 '
2
+ _commit : ' 6957226 '
3
3
_src_path : https://github.com/python-project-templates/base.git
4
4
add_extension : python
5
5
Original file line number Diff line number Diff line change 35
35
steps :
36
36
- uses : actions/checkout@v4
37
37
38
- - name : Set up Python ${{ matrix.python-version }}
39
- uses : actions/setup-python@v5
38
+ - uses : actions-ext/python/setup@main
40
39
with :
41
- python-version : ${{ matrix.python-version }}
42
- cache : ' pip'
43
- cache-dependency-path : ' pyproject.toml'
40
+ version : ${{ matrix.python-version }}
44
41
45
42
- name : Install dependencies
46
43
run : make develop
Original file line number Diff line number Diff line change 4
4
.PHONY : develop build install
5
5
6
6
develop : # # install dependencies and build library
7
- python -m pip install -e .[develop]
7
+ uv pip install -e .[develop]
8
8
9
9
build : # # build the python library
10
10
python -m build -n
11
11
12
12
install : # # install library
13
- python -m pip install .
13
+ uv pip install .
14
14
15
15
# ########
16
16
# LINTS #
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ develop = [
43
43
" pytest-cov" ,
44
44
" ruff" ,
45
45
" twine" ,
46
+ " uv" ,
46
47
" wheel" ,
47
48
]
48
49
You can’t perform that action at this time.
0 commit comments