Skip to content

Commit

Permalink
build: Update to Python 3.10 (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
kesara authored May 4, 2022
1 parent 51ab132 commit 8273f31
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 13 deletions.
14 changes: 5 additions & 9 deletions constraints.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
anyascii==0.3.1
asgiref==3.4.1
asgiref==3.5.1
awscli==1.19.112
beautifulsoup4==4.9.3
bleach==3.3.1
Expand All @@ -25,20 +25,18 @@ docutils==0.15.2
draftjs-exporter==2.1.7
et-xmlfile==1.1.0
future==0.18.2
gunicorn==19.9.0
gunicorn==20.1.0
html5lib==1.1
idna==3.3
importlib-metadata==4.8.3
importlib-resources==5.4.0
jmespath==0.10.0
l18n==2021.3
libsass==0.21.0
Markdown==3.3.6
mbstrdecoder==1.1.0
mod-wsgi==4.9.0
mod-wsgi==4.9.1
openpyxl==3.0.9
packaging==21.3
Pillow==8.4.0
Pillow==9.1.0
psycopg2-binary==2.9.3
pyasn1==0.4.8
Pygments==2.12.0
Expand All @@ -54,12 +52,11 @@ s3transfer==0.4.2
six==1.16.0
soupsieve==2.3.2.post1
sqlparse==0.4.2
tablib==3.1.0
tablib==3.2.1
telepath==0.2
tqdm==4.64.0
typed-environment-configuration==0.1.4
typepy==0.2.5
typing_extensions==4.1.1
urllib3==1.26.9
wagtail==2.15.5
wagtail-markdown==0.8.0
Expand All @@ -69,4 +66,3 @@ Willow==1.4.1
xlrd==2.0.1
XlsxWriter==3.0.3
xlwt==1.3.0
zipp==3.6.0
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ CMD ["yarn", "start"]
FROM springload/ssm-parent:1.4.1 as ssm-parent

# Base backend
FROM python:3.6-alpine as base
FROM python:3.10-alpine as base
ENV PYCURL_SSL_LIBRARY openssl

RUN apk update && apk add postgresql-libs postgresql-client libevent libjpeg openjpeg zlib
Expand Down
2 changes: 1 addition & 1 deletion docker/constraints.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
gunicorn==19.9.0
gunicorn==20.1.0
2 changes: 1 addition & 1 deletion docker/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# WebServer
-c constraints.txt
gunicorn>=19.9.0,<20.0
gunicorn>=20.1.0
2 changes: 1 addition & 1 deletion ietf/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import collections
from collections import abc as collections


class OrderedSet(collections.MutableSet):
Expand Down

0 comments on commit 8273f31

Please sign in to comment.