Skip to content

Commit e3e342a

Browse files
committed
chore(controller): upgrade requirements
1 parent de284c3 commit e3e342a

4 files changed

Lines changed: 33 additions & 36 deletions

File tree

rootfs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM registry.drycc.cc/drycc/base:bullseye
33
ENV DRYCC_UID=1001 \
44
DRYCC_GID=1001 \
55
DRYCC_HOME_DIR=/workspace \
6-
PYTHON_VERSION="3.10.6"
6+
PYTHON_VERSION="3.10.11"
77

88
RUN groupadd drycc --gid ${DRYCC_GID} \
99
&& useradd drycc -u ${DRYCC_UID} -g ${DRYCC_GID} -s /bin/bash -m -d ${DRYCC_HOME_DIR}

rootfs/Dockerfile.test

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ COPY requirements.txt ${DRYCC_HOME_DIR}/requirements.txt
66
COPY dev_requirements.txt ${DRYCC_HOME_DIR}/dev_requirements.txt
77

88
ENV PGDATA="/opt/drycc/postgresql/data" \
9-
PYTHON_VERSION="3.10.6" \
10-
REDIS_VERSION="7.0.4" \
11-
RABBITMQ_VERSION="3.10.7" \
9+
PYTHON_VERSION="3.10.11" \
10+
REDIS_VERSION="7.0.9" \
11+
RABBITMQ_VERSION="3.11.16" \
1212
POSTGRES_VERSION="14.5" \
13-
GOSU_VERSION="1.14"
13+
GOSU_VERSION="1.16"
1414

1515
RUN buildDeps='gcc rustc cargo libffi-dev musl-dev openssl'; \
1616
install-packages mercurial ca-certificates git $buildDeps \

rootfs/dev_requirements.txt

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
# test module
22
# test
33
# Run "make test-unit" for the % of code exercised during tests
4-
coverage==6.4.4
4+
coverage==7.2.5
55

66
# Run "make test-style" to check python syntax and style
7-
flake8==5.0.4
7+
flake8==6.0.0
88

99
# code coverage report at https://codecov.io/github/drycc/controller
10-
codecov==2.1.12
10+
codecov==2.1.13
1111

1212
# mock out python-requests, mostly k8s
13-
requests-mock==1.9.3
14-
15-
# tail a log and pipe into tbgrep to find all tracebacks
16-
tbgrep==0.3.0
13+
requests-mock==1.10.0

rootfs/requirements.txt

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
# Drycc controller requirements
2-
backoff==2.1.2
3-
django==4.1.7
4-
channels==3.0.5
5-
aiohttp==v3.8.1
6-
django-cors-headers==3.13.0
2+
backoff==2.2.1
3+
django==4.2.1
4+
channels==4.0.0
5+
aiohttp==3.8.4
6+
django-cors-headers==4.0.0
77
django-guardian==2.4.0
8-
djangorestframework==3.13.1
9-
docker==6.0.0
8+
djangorestframework==3.14.0
9+
docker==6.1.2
1010
gunicorn==20.1.0
11-
uvicorn[standard]==0.18.3
12-
asgiref==3.5.2
13-
idna==3.3
11+
uvicorn[standard]==0.22.0
12+
asgiref==3.6.0
13+
idna==3.4
1414
jmespath==1.0.1
15-
jsonschema==4.14.0
15+
jsonschema==4.17.3
1616
morph==0.1.5
17-
packaging==21.3
18-
pyasn1==0.4.8
19-
psycopg2-binary==2.9.3
20-
pyOpenSSL==23.0.0
17+
packaging==23.1
18+
pyasn1==0.5.0
19+
psycopg[binary]==3.1.9
20+
pyOpenSSL==23.1.1
2121
ndg-httpsclient==0.5.1
22-
pytz==2022.2.1
23-
requests==2.28.1
24-
requests-toolbelt==0.9.1
22+
pytz==2023.3
23+
requests==2.30.0
24+
requests-toolbelt==1.0.0
2525
celery==5.2.7
26-
hiredis==2.0.0
26+
hiredis==2.2.3
2727
django_redis==5.2.0
28-
influxdb-client==1.32.0
29-
dj-database-url==1.0.0
30-
social-auth-app-django==5.0.0
28+
influxdb-client==1.36.1
29+
dj-database-url==2.0.0
30+
social-auth-app-django==5.2.0
3131
python-jose==3.3.0
32-
Authlib==1.0.1
33-
kubernetes==24.2.0
32+
Authlib==1.2.0
33+
kubernetes==26.1.0

0 commit comments

Comments
 (0)