Skip to content

Bring Python versions current #54

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/test_with_tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
python: ['3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ to a database that can be used in all kinds of multi-threaded environments.
The suite supports DB-API 2 compliant database interfaces
and the classic PyGreSQL interface.

The current version 3.1.0 of DBUtils supports Python versions 3.7 to 3.12.
The current version 3.1.0 of DBUtils supports Python versions 3.9 to 3.13.

**Please have a look at the [changelog](https://webwareforpython.github.io/DBUtils/changelog.html), because there were some breaking changes in version 2.0.**

Expand Down
12 changes: 9 additions & 3 deletions dbutils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

__all__ = [
'__version__',
'simple_pooled_pg', 'steady_pg', 'pooled_pg', 'persistent_pg',
'simple_pooled_db', 'steady_db', 'pooled_db', 'persistent_db']

'persistent_db',
'persistent_pg',
'pooled_db',
'pooled_pg',
'simple_pooled_db',
'simple_pooled_pg',
'steady_db',
'steady_pg',
]
__version__ = '3.1.0'
2 changes: 1 addition & 1 deletion docs/main.de.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ herunterzuladen und zu installieren::
Anforderungen
=============

DBUtils unterstützt die Python_ Versionen 3.7 bis 3.12.
DBUtils unterstützt die Python_ Versionen 3.9 bis 3.13.

Die Module in der Variante für klassisches PyGreSQL benötigen PyGreSQL_
Version 4.0 oder höher, während die Module in der allgemeinen Variante
Expand Down
2 changes: 1 addition & 1 deletion docs/main.rst
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ It is even easier to download and install the package in one go using `pip`_::
Requirements
============

DBUtils supports Python_ versions 3.7 to 3.12.
DBUtils supports Python_ versions 3.9 to 3.13.

The modules in the classic PyGreSQL variant need PyGreSQL_ version 4.0
or above, while the modules in the universal DB-API 2 variant run with
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,11 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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",
"Topic :: Database",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down Expand Up @@ -60,7 +59,7 @@ include-package-data = false

[tool.ruff]
line-length = 79
target-version = "py37"
target-version = "py39"

[tool.ruff.lint]
select = [
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 = py3{7,8,9,10,11,12}, ruff, manifest, docs, spell
envlist = py3{9,10,11,12,13}, ruff, manifest, docs, spell

[testenv]
setenv =
Expand Down