Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ jobs:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
persist-credentials: false
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.13'
cache: 'pip'
cache-dependency-path: 'requirements/*.txt'
- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- name: Node.js npm cache
Expand Down
4 changes: 2 additions & 2 deletions requirements/local.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-r testing.txt

tox==4.26.0
tox-uv==1.26.0
tox==4.32.0
tox-uv==1.29.0
8 changes: 4 additions & 4 deletions {{cookiecutter.project_slug}}/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
persist-credentials: false
ref: ${{ github.event.pull_request.head.sha }}
- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: '3.14'
cache: 'pip'
cache-dependency-path: 'requirements/*.txt'
- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- name: Node.js npm cache
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v22
v24
2 changes: 1 addition & 1 deletion {{cookiecutter.project_slug}}/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13-slim-bookworm
FROM python:3.14-slim-bookworm
WORKDIR /app
COPY requirements/ /app/requirements/
RUN pip install \
Expand Down
4 changes: 2 additions & 2 deletions {{cookiecutter.project_slug}}/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ and [The Developer Society Dev Tools](https://github.com/developersociety/tools)
Presuming you are using those tools, getting started on this project is pretty straightforward:

```console
$ dev-clone {{ cookiecutter.project_name }}
$ workon {{ cookiecutter.project_name }}
$ dev-clone {{ cookiecutter.project_slug }}
$ workon {{ cookiecutter.project_slug }}
$ make reset
```

Expand Down
1 change: 1 addition & 0 deletions {{cookiecutter.project_slug}}/fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ def deploy():
)

aws_vault("npm run serverless -- deploy --stage {}".format(env.stage))
aws_vault("npm run serverless -- info --verbose --stage {}".format(env.stage))


@task
Expand Down
Loading