Skip to content

Commit 443aee0

Browse files
committed
chore: update supported python versions
1 parent 0bebc83 commit 443aee0

File tree

5 files changed

+5
-12
lines changed

5 files changed

+5
-12
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
max-parallel: 4
1515
matrix:
16-
python-version: ['3.9', '3.10', '3.11', '3.12']
16+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
1717

1818
services:
1919
postgres:

.python-version

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ORM powered by **[asyncio](https://docs.python.org/3/library/asyncio.html)**.
1111
Overview
1212
--------
1313

14-
* Requires Python 3.9+
14+
* Requires Python 3.10+
1515
* Has support for PostgreSQL via [aiopg](https://github.com/aio-libs/aiopg)
1616
* Has support for MySQL via [aiomysql](https://github.com/aio-libs/aiomysql)
1717
* Asynchronous analogues of peewee sync methods with prefix aio_
@@ -126,12 +126,6 @@ Install dependencies using pip:
126126
pip install -e .[develop]
127127
```
128128

129-
Or using [poetry](https://python-poetry.org/docs/):
130-
131-
```bash
132-
poetry install -E develop
133-
```
134-
135129
Run databases:
136130

137131
```bash

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ peewee-async
1111

1212

1313

14-
* Works on Python 3.9+
14+
* Works on Python 3.10+
1515
* Has support for PostgreSQL via `aiopg`
1616
* Has support for MySQL via `aiomysql`
1717
* Asynchronous analogues of peewee sync methods with prefix **aio_**

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ readme = "README.md"
77

88

99
[tool.poetry.dependencies]
10-
python = "^3.9"
10+
python = "^3.10"
1111
peewee = "^3.15.4"
1212
typing-extensions = "^4.12.2"
1313

@@ -36,7 +36,7 @@ requires = ["poetry-core"]
3636
build-backend = "poetry.core.masonry.api"
3737

3838
[tool.mypy]
39-
python_version = "3.9"
39+
python_version = "3.10"
4040
ignore_missing_imports = true
4141
no_implicit_optional = true
4242
strict_equality = true

0 commit comments

Comments
 (0)