From 4d10e354abb009928e87a7ddf30d646479cd6896 Mon Sep 17 00:00:00 2001 From: John Rouillard Date: Thu, 17 Oct 2024 15:13:03 -0400 Subject: [PATCH] issue2551339 - psycopg2 on 3.13 github runner crashes on import supposedly a new release of psycopg2 that is 3.13 compatible has been released. Try it. --- .github/workflows/ci-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 7271c97a..06c3cf11 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -203,7 +203,7 @@ jobs: - name: Install python db libraries run: | pip install mysqlclient - if [[ "$PYTHON_VERSION" != "3.13" ]]; then + if [[ "$PYTHON_VERSION" != "3.14" ]]; then pip install psycopg2; fi - name: Install auxiliary packages