From 97bfce5c126537c1911ebfce2d59ed9e1da31724 Mon Sep 17 00:00:00 2001 From: Takayuki SHIMIZUKAWA Date: Sat, 14 Sep 2024 03:15:35 +0000 Subject: [PATCH] django-redshift-backend depends directly on psycopg2. #149 --- CHANGES.rst | 10 ++++++++++ pyproject.toml | 4 +--- tox.ini | 1 - 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 2b52c9d..be110a1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,16 @@ CHANGES ======= +4.2.0 (Unrelesed) +------------------ + +General: + +* #149 django-redshift-backend depends directly on psycopg2. + If you want to use psycopg2 pre-built packages, please refer to + the following site for more information: + https://www.psycopg.org/docs/install.html + 4.1.1 (2024/08/20) ------------------ diff --git a/pyproject.toml b/pyproject.toml index edef721..a213c41 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,13 +36,11 @@ classifiers = [ ] dependencies = [ "django<5", + "psycopg2", "backports.zoneinfo;python_version<'3.9'", ] [project.optional-dependencies] -psycopg2 = [ - "psycopg2", -] psycopg2-binary = [ "psycopg2-binary", ] diff --git a/tox.ini b/tox.ini index 95be6e0..f4fb68d 100644 --- a/tox.ini +++ b/tox.ini @@ -23,7 +23,6 @@ DJANGO = [testenv] deps = coverage - psycopg2-binary>=2.7 pytest pytest-cov mock>=2.0