Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]"

Expand Down Expand Up @@ -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
Expand Down
Loading