File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff line change 11default_language_version :
2- python : python3.9
2+ python : python3.10
33repos :
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" ]
Original file line number Diff line number Diff line change 11[project ]
22name = " django-memoized-prefetch"
3- version = " 0.1.1 "
3+ version = " 0.1.2 "
44description = " A memoized prefetch for Django."
55authors = [
66 {name = " Mikuláš Poul" , email = " mikulas.poul@xelix.com" },
@@ -20,11 +20,11 @@ keywords = ["django"]
2020classifiers = [
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 ]
4040line-length = 120
41- target-version = " py39 "
41+ target-version = " py310 "
4242
4343[tool .ruff .lint ]
4444select = [
@@ -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]
Original file line number Diff line number Diff line change 11[tox]
22envlist =
3- py{39, 310,311,312,313}
3+ py{310,311,312,313,314 }
44
55[gh]
66python =
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]
1414usedevelop = true
You can’t perform that action at this time.
0 commit comments