Skip to content
Merged
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
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

services:
postgres:
Expand Down Expand Up @@ -81,6 +81,7 @@ jobs:
# env:
# PGUSER: postgres
# PGPASSWORD: postgres
# TERM: xterm

# run: behave tests/features --no-capture

Expand Down
5 changes: 4 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,10 @@ choice:

In [3]: my_result = _

Pgcli dropped support for Python<3.8 as of 4.0.0. If you need it, install ``pgcli <= 4.0.0``.
Pgcli dropped support for:

* Python<3.8 as of 4.0.0.
* Python<3.9 as of 4.2.0.

Thanks:
-------
Expand Down
5 changes: 5 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ Bug fixes:
----------
* Avoid raising `NameError` when exiting unsuccessfully in some cases

Internal:
---------

* Drop support for Python 3.8 and add 3.13.

4.1.0 (2024-03-09)
==================

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ classifiers = [
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: SQL",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
]
urls = { Homepage = "https://pgcli.com" }
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"pgspecial>=2.0.0",
"click >= 4.1",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38, py39, py310, py311, py312
envlist = py39, py310, py311, py312, py313
[testenv]
deps = pytest>=2.7.0,<=3.0.7
mock>=1.0.1
Expand Down
Loading