File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed
python/{{cookiecutter.project_slug}} Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 1010 - name : Setup Python
1111 uses : actions/setup-python@v5
1212
13+ - name : Install uv
14+ uses : astral-sh/setup-uv@v6
15+
16+ - name : Activate venv
17+ run : uv venv
18+
1319 - name : Install dependencies
1420 run : |
15- python3 -m pip install -r requirements.txt
21+ uv pip install -r requirements.txt
1622
1723 - name : Attempt build
18- run : python3 -m cookiecutter --no-input python/
24+ run : uv run cookiecutter --no-input python/
25+
26+ - name : Attempt installation
27+ run : uv sync --all-extras
28+ working-directory : wagner_lab_project/
29+ env :
30+ SETUPTOOLS_SCM_PRETEND_VERSION : 0.0.1
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ classifiers = [
1717requires-python = " >=3.11"
1818description = " {{ cookiecutter.description }}"
1919license = " MIT"
20- license_files = [" LICENSE" ]
20+ license-files = [" LICENSE" ]
2121dependencies = [
2222{%- if cookiecutter.add_cli %}
2323 "click",
You can’t perform that action at this time.
0 commit comments