Skip to content

Commit da65ef1

Browse files
committed
1.08 Upgrade Django and all dependencies
1 parent d7404b3 commit da65ef1

File tree

9 files changed

+22
-22
lines changed

9 files changed

+22
-22
lines changed

build_docker_env.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
@echo off
22

3-
set PG_DB=webdev21videos2
3+
set PG_DB=webdev22videos3
44
set PG_PASSWORD=%RANDOM%%RANDOM%%RANDOM%
55
set PG_SERVICE_NAME=postgres
6-
set PG_USER=webdev21videos2_user
6+
set PG_USER=webdev22videos3_user
77
set SKEY=%RANDOM%%RANDOM%%RANDOM%%RANDOM%%RANDOM%%RANDOM%
88

99
Echo POSTGRES_DB=%PG_DB% > .docker-env

build_docker_env.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/env sh
22

3-
PG_DB=webdev21videos2
3+
PG_DB=webdev22videos3
44
PG_PASSWORD=`head -c 18 /dev/urandom | base64 | tr -dc 'a-zA-Z0-9' | head -c 12`
55
PG_SERVICE_NAME=postgres
6-
PG_USER=webdev21videos2_user
6+
PG_USER=webdev22videos3_user
77

88
echo "POSTGRES_DB=$PG_DB
99
POSTGRES_PASSWORD=$PG_PASSWORD

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ volumes:
66

77
services:
88
postgres:
9-
image: postgres:10.4-alpine
9+
image: postgres:10.9-alpine
1010
env_file: ./.docker-env
1111
volumes:
1212
- postgres_data_dev:/var/lib/postgresql/data

docker/django/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM revolutionsystems/python:3.7.1-wee-optimized-lto
1+
FROM revolutionsystems/python:3.7.4-wee-optimized-lto
22

33
WORKDIR /app
44

docker/jupyter/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM revolutionsystems/python:3.7.1-wee-optimized-lto
1+
FROM revolutionsystems/python:3.7.4-wee-optimized-lto
22

33
WORKDIR /app
44

requirements/base.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
django-environ==0.4.5
2-
django-extensions==2.1.0
3-
django-url-checks==0.1.0
4-
Django>=2.1,<2.2
5-
djangorestframework==3.8.2
6-
ipython==6.4.0
7-
pytz==2018.5
8-
whitenoise==4.1
2+
django-extensions==2.2.1
3+
django-url-checks==0.2.0
4+
Django>=2.2,<2.3
5+
djangorestframework==3.10.2
6+
ipython==7.7.0
7+
pytz==2019.2
8+
whitenoise==4.1.3

requirements/development.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
-r base.txt
22

3-
django-test-plus==1.1.1
4-
factory_boy==2.11.1
5-
Faker==0.9.2
3+
django-test-plus==1.3.1
4+
factory_boy==2.12.0
5+
Faker==2.0.0
66
flake8==3.7.8
77
flake8-bugbear==19.3.0
88
flake8-docstrings==1.3.0
99
hypothesis==4.32.2
1010
jupyter==1.0.0
1111
pep8-naming==0.8.2
1212
pre-commit==1.17.0
13-
psycopg2-binary==2.7.5
13+
psycopg2-binary==2.8.3

requirements/production.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-r base.txt
22

3-
Brotli==1.0.4
4-
gunicorn==19.7.1
5-
psycopg2>=2.7,<2.8 --no-binary psycopg2
3+
Brotli==1.0.7
4+
gunicorn==19.9.0
5+
psycopg2>=2.8,<2.9 --no-binary psycopg2

runtime.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
python-3.7.0
1+
python-3.7.4

0 commit comments

Comments
 (0)