Skip to content

Commit 0591a50

Browse files
authored
Merge pull request #3 from mjun0812/template-update-5
Update template to version latest
2 parents 7d6be62 + 09f3028 commit 0591a50

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2-
_commit: v1.0.3
2+
_commit: v1.0.4
33
_src_path: gh:mjun0812/python-copier-template
44
author_email: mjun@mjunya.com
55
author_name: Junya Morioka

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616
- name: Install uv
17-
uses: astral-sh/setup-uv@v4
17+
uses: astral-sh/setup-uv@v6
1818

1919
- name: Format
2020
run: uvx ruff format . --check --diff

docker/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ RUN --mount=type=cache,target=/root/.cache/uv \
3636
# Sync this project
3737
COPY . .
3838
RUN --mount=type=cache,target=/root/.cache/uv \
39-
uv sync --locked --no-editable
39+
ulimit -n 8192 \
40+
&& uv sync --locked --no-editable
4041

4142
FROM $RUNNER_IMAGE AS production
4243

0 commit comments

Comments
 (0)