Skip to content

Commit 2ef1032

Browse files
committed
Drop support got python 3.8.
1 parent 5001f94 commit 2ef1032

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
17+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1818

1919
services:
2020
postgres:

README.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,10 @@ choice:
352352

353353
In [3]: my_result = _
354354

355-
Pgcli dropped support for Python<3.8 as of 4.0.0. If you need it, install ``pgcli <= 4.0.0``.
355+
Pgcli dropped support for:
356+
357+
* Python<3.8 as of 4.0.0.
358+
* Python<3.9 as of 4.2.0.
356359

357360
Thanks:
358361
-------

changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ Bug fixes:
1010
----------
1111
* Avoid raising `NameError` when exiting unsuccessfully in some cases
1212

13+
Internal:
14+
---------
15+
16+
* Drop support for Python 3.8 and add 3.13.
17+
1318
4.1.0 (2024-03-09)
1419
==================
1520

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@ classifiers = [
1010
"Operating System :: Unix",
1111
"Programming Language :: Python",
1212
"Programming Language :: Python :: 3",
13-
"Programming Language :: Python :: 3.8",
1413
"Programming Language :: Python :: 3.9",
1514
"Programming Language :: Python :: 3.10",
1615
"Programming Language :: Python :: 3.11",
1716
"Programming Language :: Python :: 3.12",
17+
"Programming Language :: Python :: 3.13",
1818
"Programming Language :: SQL",
1919
"Topic :: Database",
2020
"Topic :: Database :: Front-Ends",
2121
"Topic :: Software Development",
2222
"Topic :: Software Development :: Libraries :: Python Modules",
2323
]
2424
urls = { Homepage = "https://pgcli.com" }
25-
requires-python = ">=3.8"
25+
requires-python = ">=3.9"
2626
dependencies = [
2727
"pgspecial>=2.0.0",
2828
"click >= 4.1",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py38, py39, py310, py311, py312
2+
envlist = py39, py310, py311, py312, py313
33
[testenv]
44
deps = pytest>=2.7.0,<=3.0.7
55
mock>=1.0.1

0 commit comments

Comments
 (0)