File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed
Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 1515 jupyter
1616 pytest
1717 pytest-cov
18+ uv
1819
1920[options.entry_points]
2021console_scripts =
Original file line number Diff line number Diff line change 1- {% if gpu %}FROM nvidia/cuda:11.3.1-cudnn8-runtime-ubuntu20.04{% else %}FROM python:3.9 {% endif %}
1+ {% if gpu %}FROM nvidia/cuda:11.3.1-cudnn8-runtime-ubuntu20.04{% else %}FROM python:3.12 {% endif %}
22
33ARG USER=dev
44ARG USER_UID=1000
Original file line number Diff line number Diff line change @@ -42,3 +42,8 @@ publish: branchify
4242 twine upload dist/* --username $(PYPI_USERNAME ) --password $(PYPI_PASSWORD )
4343 git checkout -- setup.cfg
4444 rm -rf dist
45+
46+ .PHONY : freeze
47+ freeze :
48+ uv pip compile -q -o requirements.txt setup.cfg
49+ uv pip compile -q --extra dev -o requirements-dev.txt setup.cfg
Original file line number Diff line number Diff line change @@ -39,11 +39,6 @@ def project(
3939 author_email = author_email ,
4040 project_directory = project_dir_string ,
4141 )
42- devcontainer (
43- project_name ,
44- gpu = gpu ,
45- project_directory = project_dir_string ,
46- )
4742 dockerfile (
4843 project_name ,
4944 gpu = gpu ,
You can’t perform that action at this time.
0 commit comments