Skip to content

Commit 6bbb534

Browse files
committed
Support new Python
1 parent f8f5937 commit 6bbb534

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v5
1515
- uses: actions/setup-python@v5
1616
with:
17-
python-version: '3.9'
17+
python-version: '3.10'
1818
- uses: pre-commit/action@v3.0.1
1919

2020
test:
@@ -25,11 +25,11 @@ jobs:
2525
fail-fast: false
2626
matrix:
2727
py:
28+
- "3.14"
2829
- "3.13"
2930
- "3.12"
3031
- "3.11"
3132
- "3.10"
32-
- "3.9"
3333

3434
steps:
3535
- name: Setup python for test ${{ matrix.py }}

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
default_language_version:
2-
python: python3.9
2+
python: python3.10
33
repos:
44
- repo: https://github.com/astral-sh/ruff-pre-commit
5-
rev: 'v0.12.1'
5+
rev: 'v0.14.4'
66
hooks:
77
- id: ruff
88
args: [ "--fix" ]

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "django-memoized-prefetch"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "A memoized prefetch for Django."
55
authors = [
66
{name = "Mikuláš Poul", email = "mikulas.poul@xelix.com"},
@@ -20,11 +20,11 @@ keywords = ["django"]
2020
classifiers = [
2121
"Programming Language :: Python",
2222
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.9",
2423
"Programming Language :: Python :: 3.10",
2524
"Programming Language :: Python :: 3.11",
2625
"Programming Language :: Python :: 3.12",
2726
"Programming Language :: Python :: 3.13",
27+
"Programming Language :: Python :: 3.14",
2828
"Development Status :: 5 - Production/Stable",
2929
"Framework :: Django",
3030
]
@@ -38,7 +38,7 @@ build-backend = "hatchling.build"
3838

3939
[tool.ruff]
4040
line-length = 120
41-
target-version = "py39"
41+
target-version = "py310"
4242

4343
[tool.ruff.lint]
4444
select = [
@@ -159,5 +159,5 @@ dev = [
159159
"factory-boy>=3.3.3",
160160
"pytest-cov>=6.2.1",
161161
"pytest-django>=4.11.1",
162-
"ruff>=0.12.10",
162+
"ruff>=0.14.4",
163163
]

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[tox]
22
envlist =
3-
py{39,310,311,312,313}
3+
py{310,311,312,313,314}
44

55
[gh]
66
python =
7-
"3.9" = py39
87
"3.10" = py310
98
"3.11" = py311
109
"3.12" = py312
1110
"3.13" = py313
11+
"3.14" = py314
1212

1313
[testenv]
1414
usedevelop = true

0 commit comments

Comments
 (0)