Skip to content

Commit 9cd2a64

Browse files
Pin dependencies
1 parent c5ee037 commit 9cd2a64

File tree

6 files changed

+214
-195
lines changed

6 files changed

+214
-195
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"ghcr.io/devcontainers-extra/features/heroku-cli:1.0.5": {},
2525
"ghcr.io/devcontainers/features/github-cli:1": {},
2626
"ghcr.io/devcontainers/features/node:1": {
27-
"version": "24"
27+
"version": "v24.14.1"
2828
}
2929
},
3030
"customizations": {

.github/workflows/frontend-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- uses: actions/setup-node@v6
2121
with:
22-
node-version: 24.x
22+
node-version: 24.14.1
2323

2424
- name: Install Vue app
2525
run: npm ci
@@ -93,7 +93,7 @@ jobs:
9393

9494
- uses: actions/setup-node@v6
9595
with:
96-
node-version: 24
96+
node-version: 24.14.1
9797

9898
- name: Install uv
9999
uses: astral-sh/setup-uv@v7

pyproject.toml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -10,55 +10,55 @@ license-files = ["LICENSE", "NOTICE"]
1010
classifiers = ["Private :: Do Not Upload"]
1111
dependencies = [
1212
# Runtime dependencies, always needed
13-
"boto3==1.40.51",
14-
"celery==5.5.3",
13+
"boto3==1.42.74",
14+
"celery==5.6.2",
1515
# Pin dandischema to exact version to make explicit which schema version is being used
1616
"dandischema==0.12.1", # schema version 0.7.0
17-
"django[argon2]==5.2.7",
18-
"django-allauth==65.12.0",
19-
"django-auth-style==0.12.0",
20-
"django-click==2.4.1",
17+
"django[argon2]==5.2.12",
18+
"django-allauth==65.15.0",
19+
"django-auth-style==0.15.0",
20+
"django-click==2.5.0",
2121
"django-cors-headers==4.9.0",
22-
"django-environ==0.12.1",
22+
"django-environ==0.13.0",
2323
"django-extensions==4.1",
2424
"django-filter==25.2",
25-
"django-guardian==3.2.0",
26-
"django-oauth-toolkit==3.1.0",
25+
"django-guardian==3.3.0",
26+
"django-oauth-toolkit==3.2.0",
2727
"django-resonant-settings[allauth,celery]==0.48.1",
28-
"django-resonant-utils[allauth,s3_storage]==0.16.0",
28+
"django-resonant-utils[allauth,s3_storage]==0.19.0",
2929
"django-stubs-ext==5.2.7",
3030
# TODO: pin djangorestframework until we figure out what the cause of
3131
# https://github.com/dandi/dandi-archive/issues/1896 is.
32-
"djangorestframework==3.14.0",
32+
"djangorestframework==3.17.0",
3333
"drf-extensions==0.8.0",
34-
"drf-yasg==1.21.11",
35-
"fsspec[http]==2025.9.0",
36-
"jsonschema==4.25.1",
34+
"drf-yasg==1.21.15",
35+
"fsspec[http]==2025.12.0",
36+
"jsonschema==4.26.0",
3737
"more_itertools==10.8.0",
38-
"psycopg[binary]==3.2.10",
38+
"psycopg[binary]==3.3.3",
3939
"pyyaml==6.0.3",
4040
"requests==2.32.5",
41-
"rich==14.2.0",
42-
"whitenoise[brotli]==6.11.0",
41+
"rich==14.3.3",
42+
"whitenoise[brotli]==6.12.0",
4343
"zarr-checksum==0.4.7",
4444
# Production-only
4545
"django-s3-file-field[s3]==1.1.0",
4646
"django-storages[s3]==1.14.6",
47-
"sentry-sdk[celery,django,pure_eval]==2.41.0",
47+
"sentry-sdk[celery,django,pure_eval]==2.55.0",
4848
"gunicorn==23.0.0",
4949
# Development-only, but required
50-
"tqdm==4.67.1",
50+
"tqdm==4.67.3",
5151
]
5252
dynamic = ["version"]
5353

5454
[project.optional-dependencies]
5555
development = [
5656
# Runtime dependencies, only needed with "development" settings
5757
"django-browser-reload==1.21.0",
58-
"django-debug-toolbar==6.0.0",
59-
"ipython==9.6.0",
58+
"django-debug-toolbar==6.2.0",
59+
"ipython==9.11.0",
6060
"watchdog==6.0.0",
61-
"werkzeug==3.1.3",
61+
"werkzeug==3.1.7",
6262
]
6363
cli = ["dandi==0.74.3"]
6464

0 commit comments

Comments
 (0)