aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar Leon Sandøy <[email protected]>2020-11-14 23:58:45 +0100
committerGravatar GitHub <[email protected]>2020-11-14 23:58:45 +0100
commit04764a706a80ca40919bb149860a57a868ea6737 (patch)
tree5bf6382b77f371c134f9eb00dbdd31b36f690bc2 /Pipfile
parentAdd Notion to sponsors (diff)
parentDon't call gunicorn using os.system, patch sys.argv and call the module (diff)
Merge pull request #422 from python-discord/get_rid_of_uwsgi
Get rid of UWSGI, replace with gunicorn
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Pipfile b/Pipfile
index 27a2a452..4436117b 100644
--- a/Pipfile
+++ b/Pipfile
@@ -16,7 +16,7 @@ requests = "~=2.21"
pygments = "~=2.3.1"
wiki = "~=0.6.0"
pyyaml = "~=5.1"
-pyuwsgi = {version = "~=2.0", sys_platform = "!='win32'"}
+gunicorn = "~=20.0.4"
django-allauth = "~=0.41"
sentry-sdk = "~=0.14"
gitpython = "~=3.1.7"
@@ -38,7 +38,7 @@ pre-commit = "~=2.1"
unittest-xml-reporting = "~=3.0"
[requires]
-python_version = "3.7"
+python_version = "3.9"
[scripts]
start = "python manage.py run --debug"