diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8bfaf40d..53fe2e70 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,10 +8,16 @@ jobs: strategy: matrix: include: - - python: "3.9" - psycopg: "psycopg2" + - python: "3.10" + psycopg: "psycopg3" + - python: "3.11" + psycopg: "psycopg3" + - python: "3.12" + psycopg: "psycopg3" - python: "3.13" psycopg: "psycopg3" + - python: "3.14" + psycopg: "psycopg3" steps: - uses: actions/checkout@v6 - name: Setup Python diff --git a/README.md b/README.md index 45241e8f..cac17829 100644 --- a/README.md +++ b/README.md @@ -34,8 +34,7 @@ pg\_activity releases. Before submitting a bug report here: ## From PyPI -pg\_activity can be installed using pip on Python 3.8 or later along with -psycopg: +pg\_activity can be installed using pip along with psycopg: $ python3 -m pip install "pg_activity[psycopg]" @@ -309,6 +308,10 @@ this escape sequence and set the clipboard accordingly. If so, the copy even works across remote connections (SSH). In general, terminal emulators supporting this would use `CTRL+SHIFT+V` to paste from this clipboard. +**Python version supported and tests** + +pg\_activity's CI run for version 3.10 to 3.14 included with psychopg3. + # Hacking In order to work on pg\_activity source code, in particular to run the tests