diff options
author | 2021-08-12 11:26:12 +0100 | |
---|---|---|
committer | 2021-08-12 11:55:58 +0100 | |
commit | 07ba4f0cf00717e7b0143eafedb5b4c539468303 (patch) | |
tree | 6a13fdef66ba806c03b95b90a2757f75f4da916b /pyproject.toml | |
parent | chore: Update django-simple-bulma from v2.1 to v2.4 (diff) |
fix: Pin `psycopg2-binary` to v2.8.*
`psycopg2-binary` introduced a change that cause Django to break in v2.9. Without this pin, starting up the site raises an `AssertionError: database connection isn't set to UTC`
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index c9525148..f0800db8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ django-environ = "~=0.4.5" django-filter = "~=2.1.0" django-hosts = "~=4.0" djangorestframework = "~=3.11.0" -psycopg2-binary = "~=2.8" +psycopg2-binary = "~=2.8.0" django-simple-bulma = "~=2.4" whitenoise = "~=5.0" requests = "~=2.21" |