From a1a9443fcca10ad86928967ff220c059d2edfe1f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Sep 2024 17:44:32 +0000 Subject: [PATCH 1/2] Bump psycopg[binary] from 3.2.1 to 3.2.3 in /requirements Bumps [psycopg[binary]](https://github.com/psycopg/psycopg) from 3.2.1 to 3.2.3. - [Changelog](https://github.com/psycopg/psycopg/blob/master/docs/news.rst) - [Commits](https://github.com/psycopg/psycopg/compare/3.2.1...3.2.3) --- updated-dependencies: - dependency-name: psycopg[binary] dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements/postgres.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/postgres.txt b/requirements/postgres.txt index 6b5ba0d3a..9550e0daa 100644 --- a/requirements/postgres.txt +++ b/requirements/postgres.txt @@ -1 +1 @@ -psycopg[binary]==3.2.1 +psycopg[binary]==3.2.3 From e66c62d1b693e66d48d4fbf6a1a96fb078ec13a8 Mon Sep 17 00:00:00 2001 From: Anders <6058745+ddabble@users.noreply.github.com> Date: Sun, 24 Nov 2024 18:57:21 +0100 Subject: [PATCH 2/2] Test psycopg with Python 3.13 This was made possible with release 3.2.2 - see https://github.com/psycopg/psycopg/blob/3.2.3/docs/news.rst#psycopg-322 --- tox.ini | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/tox.ini b/tox.ini index 663be4c8e..6d845e47b 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,8 @@ [tox] envlist = - py{38,39,310,311,312}-dj42-{sqlite3,postgres,mysql,mariadb}, - py{310,311,312}-dj50-{sqlite3,postgres,mysql,mariadb}, - py{310,311,312}-djmain-{sqlite3,postgres,mysql,mariadb}, - # DEV: Add `313` to the Python versions above (so that postgres is tested with 3.13) - # when `psycopg` provides binaries for 3.13 - py313-dj{42,50,main}-{sqlite3,mysql,mariadb}, + py{38,39,310,311,312,313}-dj42-{sqlite3,postgres,mysql,mariadb}, + py{310,311,312,313}-dj50-{sqlite3,postgres,mysql,mariadb}, + py{310,311,312,313}-djmain-{sqlite3,postgres,mysql,mariadb}, docs, lint