Skip to content

Commit 86ee3df

Browse files
authored
drop Python 3.9 and adds support for Python 3.14 (#37)
1 parent 2c7b21a commit 86ee3df

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
14+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1515

1616
steps:
1717
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[tool.black]
22
line-length = 79
3-
target-version = ['py37', 'py38', 'py39']
43

54
[tool.isort]
65
profile = "black"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
long_description_content_type="text/markdown",
3131
author="Daniel Townsend",
3232
author_email="dan@dantownsend.co.uk",
33-
python_requires=">=3.9.0",
33+
python_requires=">=3.10.0",
3434
url="https://github.com/piccolo-orm/targ/",
3535
packages=["targ"],
3636
include_package_data=True,
@@ -40,11 +40,11 @@
4040
"License :: OSI Approved :: MIT License",
4141
"Programming Language :: Python",
4242
"Programming Language :: Python :: 3",
43-
"Programming Language :: Python :: 3.9",
4443
"Programming Language :: Python :: 3.10",
4544
"Programming Language :: Python :: 3.11",
4645
"Programming Language :: Python :: 3.12",
4746
"Programming Language :: Python :: 3.13",
47+
"Programming Language :: Python :: 3.14",
4848
"Programming Language :: Python :: Implementation :: CPython",
4949
],
5050
)

0 commit comments

Comments
 (0)