Skip to content

Commit 292d3f5

Browse files
authored
Merge pull request #2245 from unicef/staging
Staging
2 parents 48b90b6 + acec556 commit 292d3f5

File tree

453 files changed

+1438
-141059
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

453 files changed

+1438
-141059
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,5 @@ workflows:
6262
- master
6363
- staging
6464
- develop
65-
- prp-refactoring
65+
- testing
6666
- ci-updates

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN apk add \
1515
libxslt-dev \
1616
xmlsec-dev
1717
RUN apk add postgresql-dev \
18-
libffi-dev\
18+
libffi-dev \
1919
jpeg-dev
2020

2121
RUN apk add --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
@@ -47,7 +47,8 @@ RUN apk add --upgrade apk-tools
4747
RUN apk add postgresql-client
4848
RUN apk add openssl \
4949
ca-certificates \
50-
libressl2.7-libcrypto
50+
libressl2.7-libcrypto \
51+
libmagic
5152
RUN apk add geos \
5253
gdal --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/
5354

@@ -57,6 +58,7 @@ ADD manage.py /code/manage.py
5758
WORKDIR /code/
5859

5960
COPY --from=builder /usr/local/lib/python3.6/site-packages /usr/local/lib/python3.6/site-packages
61+
COPY --from=builder /usr/local/bin /usr/local/bin
6062

6163
ENV PYTHONUNBUFFERED 1
6264
ENV PYTHONPATH /code

Pipfile

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,16 @@ ipython = "*"
1414
pdbpp = "*"
1515
tox = "*"
1616
drf-api-checker = "*"
17-
factory_boy = "==2.8"
17+
factory-boy = ">=2.11"
1818
django-extensions = "*"
1919
sphinx = "*"
2020

2121
[packages]
22-
amqp = "==2.2.2"
22+
amqp = "==2.4.2"
2323
asn1crypto = "==0.24.0"
2424
azure-common = "==1.1.8"
2525
azure-nspkg = "==2.0.0"
2626
azure-storage = "==0.20.2"
27-
billiard = "==3.5.0.3"
2827
carto = "==1.4"
2928
celery = "==4.2.1"
3029
cffi = "==1.11.5"
@@ -35,22 +34,22 @@ defusedxml = "==0.5.0"
3534
diff-match-patch = "==20121119"
3635
dj-database-url = "==0.5"
3736
dj-static = "==0.0.6"
38-
django-appconf = "==1.0.2"
37+
django-appconf = "==1.0.3"
3938
django-celery-email = "==2.0.1"
40-
django-contrib-comments = "==1.9"
41-
django-cors-headers = "==2.4"
39+
django-contrib-comments = "==1.9.1"
40+
django-cors-headers = "==2.5"
4241
django-debug-toolbar = "==1.11"
4342
django-easy-pdf = "==0.1.1"
4443
django-filter = "==2.1"
4544
django-fsm = "==2.6"
4645
django-import-export = "==1.2"
47-
django-js-asset = "==1.1.0"
46+
django-js-asset = "==1.2.2"
4847
django-leaflet = "==0.24"
4948
django-logentry-admin = "==1.0.4"
5049
django-model-utils = "==3.1.2"
5150
django-mptt = "==0.9.1"
52-
django-ordered-model = "==1.5"
53-
django-redis-cache = "==1.8"
51+
django-ordered-model = "==3.1.1"
52+
django-redis-cache = "==2.0"
5453
django-rest-swagger = "==2.2"
5554
django-storages = "==1.6.6"
5655
django-tenants = "==2.1"
@@ -61,7 +60,7 @@ djangorestframework-gis = "==0.14"
6160
djangorestframework-jwt = "==1.11.0"
6261
djangorestframework-recursive = "==0.1.2"
6362
djangorestframework-xml = "==1.4"
64-
djangorestframework = "==3.9.1"
63+
djangorestframework = "==3.9.2"
6564
drf-nested-routers = "==0.91"
6665
drf-querystringfilter = "==1.0.0"
6766
drfpasswordless = "==1.2"
@@ -74,7 +73,7 @@ idna = "==2.6"
7473
itypes = "==1.1.0"
7574
jdcal = "==1.4"
7675
jsonfield = "==2.0.2"
77-
kombu = "==4.2.1"
76+
kombu = "==4.4"
7877
newrelic = "==2.94.0.79"
7978
oauthlib = "==2.0.7"
8079
odfpy = "==1.3.6"
@@ -89,7 +88,7 @@ python-dateutil = "==2.5.3"
8988
python3-openid = "==3.1.0"
9089
pytz = "==2018.3"
9190
raven = "==6.10"
92-
redis = "==2.10.6"
91+
redis = "==3.2"
9392
reportlab = "==3.5.9"
9493
requests-oauthlib = "==0.8.0"
9594
requests = "==2.21"
@@ -109,25 +108,25 @@ uritemplate = "==3.0.0"
109108
vine = "==1.1.4"
110109
webencodings = "==0.5.1"
111110
xhtml2pdf = "==0.2.3"
112-
xlrd = "==1.1.0"
111+
xlrd = "==1.2.0"
113112
xlwt = "==1.3.0"
114113
Babel = "==2.6.0"
115114
django_celery_beat = "==1.4"
116115
django_celery_results = "==1.0.4"
117116
django-post_office = "==3.1.0"
118-
Django = "==2.1.5"
117+
Django = "==2.1.7"
119118
et_xmlfile = "==1.0.1"
120119
GDAL = "==2.4.0"
121120
Jinja2 = "==2.10"
122121
MarkupSafe = "==1.1.0"
123122
PyJWT = "==1.5.3"
124123
PyPDF2 = "==1.26.0"
125124
PyYAML = "==3.12"
126-
unicef_attachments = "==0.4.2"
125+
unicef_attachments = "==0.5.1"
127126
unicef_notification = "==0.2.1"
128127
unicef_restlib = "==0.4"
129-
unicef_snapshot = "==0.2.2"
130-
Pillow = "==5.3.0"
128+
unicef_snapshot = "==0.2.3"
129+
Pillow = "==5.4.1"
131130

132131
[requires]
133132
python_version = "3.6.4"

0 commit comments

Comments
 (0)