Skip to content

Commit 20d82b2

Browse files
authored
Merge pull request mjhea0#12 from mjhea0/updates
bump dependencies
2 parents 1d9609f + fb4ed9f commit 20d82b2

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.8.0
1+
3.9.1

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# base image
2-
FROM python:3.8.0-alpine
2+
FROM python:3.9.1-alpine
33

44
# set working directory
55
RUN mkdir -p /usr/src/app

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2019 Michael Herman
3+
Copyright (c) 2020 Michael Herman
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '3.7'
1+
version: '3.8'
22

33
services:
44

@@ -28,7 +28,7 @@ services:
2828
- redis
2929

3030
redis:
31-
image: redis:5.0.7-alpine
31+
image: redis:6-alpine
3232

3333
dashboard:
3434
build: ./project/dashboard

manage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import unittest
55

66
import redis
7-
from rq import Connection, Worker
87
from flask.cli import FlaskGroup
8+
from rq import Connection, Worker
99

1010
from project.server import create_app
1111

project/client/static/main.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ $('.btn').on('click', function() {
1111
method: 'POST'
1212
})
1313
.done((res) => {
14-
getStatus(res.data.task_id)
14+
getStatus(res.data.task_id);
1515
})
1616
.fail((err) => {
17-
console.log(err)
17+
console.log(err);
1818
});
1919
});
2020

@@ -38,6 +38,6 @@ function getStatus(taskID) {
3838
}, 1000);
3939
})
4040
.fail((err) => {
41-
console.log(err)
41+
console.log(err);
4242
});
4343
}

project/dashboard/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.8.0-alpine
1+
FROM python:3.9.1-alpine
22

33
RUN pip install rq-dashboard
44

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Flask==1.1.1
1+
Flask==1.1.2
22
Flask-Bootstrap==3.3.7.1
3-
Flask-Testing==0.7.1
4-
Flask-WTF==0.14.2
5-
redis==3.3.11
6-
rq==1.1.0
3+
Flask-Testing==0.8.1
4+
Flask-WTF==0.14.3
5+
redis==3.5.3
6+
rq==1.7.0

0 commit comments

Comments
 (0)