From c4b716bd8995cb165cbab950f741c1967819451e Mon Sep 17 00:00:00 2001 From: "pyup.io bot" Date: Wed, 29 Dec 2021 13:42:46 -0500 Subject: [PATCH] Update psycopg2 to 2.9.3 (#3503) * Update psycopg2 from 2.9.2 to 2.9.3 * Update psycopg2 from 2.9.2 to 2.9.3 --- {{cookiecutter.project_slug}}/requirements/local.txt | 2 +- {{cookiecutter.project_slug}}/requirements/production.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/{{cookiecutter.project_slug}}/requirements/local.txt b/{{cookiecutter.project_slug}}/requirements/local.txt index 0ddf3496c..a45b7c984 100644 --- a/{{cookiecutter.project_slug}}/requirements/local.txt +++ b/{{cookiecutter.project_slug}}/requirements/local.txt @@ -3,7 +3,7 @@ Werkzeug==2.0.2 # https://github.com/pallets/werkzeug ipdb==0.13.9 # https://github.com/gotcha/ipdb {%- if cookiecutter.use_docker == 'y' %} -psycopg2==2.9.2 # https://github.com/psycopg/psycopg2 +psycopg2==2.9.3 # https://github.com/psycopg/psycopg2 {%- else %} psycopg2-binary==2.9.2 # https://github.com/psycopg/psycopg2 {%- endif %} diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt index 8e622ea94..e7ca7fb28 100644 --- a/{{cookiecutter.project_slug}}/requirements/production.txt +++ b/{{cookiecutter.project_slug}}/requirements/production.txt @@ -3,7 +3,7 @@ -r base.txt gunicorn==20.1.0 # https://github.com/benoitc/gunicorn -psycopg2==2.9.2 # https://github.com/psycopg/psycopg2 +psycopg2==2.9.3 # https://github.com/psycopg/psycopg2 {%- if cookiecutter.use_whitenoise == 'n' %} Collectfast==2.2.0 # https://github.com/antonagestam/collectfast {%- endif %}