Skip to content

Commit 52e7e56

Browse files
committed
update requirements
1 parent 6cc42ed commit 52e7e56

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -133,4 +133,5 @@ node_modules
133133
coverage
134134
htmlcov
135135
tags
136-
./demo/static/dist/*
136+
demo/static/dist/*
137+
static

Bakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ docker/run:
88
docker: setup docker/build docker/run
99
echo "All ready"
1010

11-
update:
11+
sync:
1212
pip-compile -o requirements.txt
1313

1414
setup:

fabfile.py

-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,5 @@ def deploy(ctx):
1616
ctx.run("pip install -r requirements.txt")
1717
ctx.run("python manage.py migrate")
1818
ctx.run("python populate.py")
19-
ctx.run("python manage.py collectstatic --noinput")
2019
ctx.run("sudo supervisorctl restart inertia")
2120

requirements.txt

+15-15
Original file line numberDiff line numberDiff line change
@@ -4,38 +4,38 @@
44
#
55
# pip-compile --output-file=requirements.txt
66
#
7-
asgiref==3.2.3 # via django
7+
asgiref==3.2.10 # via django
88
bake-cli==0.12.0
9-
bcrypt==3.1.7 # via paramiko
10-
cffi==1.14.0 # via bcrypt, cryptography, pynacl
11-
click==7.1.1 # via bake-cli
9+
bcrypt==3.2.0 # via paramiko
10+
cffi==1.14.2 # via bcrypt, cryptography, pynacl
11+
click==7.1.2 # via bake-cli
1212
colorama==0.4.3 # via bake-cli
13-
cryptography==2.9.2 # via paramiko
13+
cryptography==3.1 # via paramiko
1414
decorator==4.4.2 # via networkx
1515
delegator.py==0.1.1 # via bake-cli
1616
django-favicon==0.1.3
1717
django-js-routes==0.1.3
1818
django-seed==0.2.2
1919
django-test-plus==1.4.0
20-
django-webserver[gunicorn]==1.1.0
21-
django==3.0.7
20+
django-webserver[gunicorn]==1.2.0
21+
django==3.1.1
2222
fabric==2.5.0
23-
faker==4.0.0 # via django-seed
23+
faker==4.1.2 # via django-seed
2424
gunicorn==20.0.4
25-
inertia-django==0.2.2
25+
inertia-django==0.3.1
2626
invoke==1.4.1 # via fabric
27-
marshmallow==3.4.0
28-
networkx==2.4 # via bake-cli
29-
paramiko==2.7.1 # via fabric
27+
marshmallow==3.7.1
28+
networkx==2.5 # via bake-cli
29+
paramiko==2.7.2 # via fabric
3030
pexpect==4.8.0 # via delegator.py
3131
ptyprocess==0.6.0 # via pexpect
3232
pycparser==2.20 # via cffi
3333
pygments==2.6.1 # via bake-cli
3434
pynacl==1.4.0 # via paramiko
3535
python-dateutil==2.8.1 # via faker
36-
pytz==2019.3 # via django
37-
six==1.14.0 # via bcrypt, cryptography, pynacl, python-dateutil
38-
sqlparse==0.3.0 # via django
36+
pytz==2020.1 # via django
37+
six==1.15.0 # via bcrypt, cryptography, pynacl, python-dateutil
38+
sqlparse==0.3.1 # via django
3939
text-unidecode==1.3 # via faker
4040

4141
# The following packages are considered to be unsafe in a requirements file:

0 commit comments

Comments
 (0)