Skip to content

Commit b74e824

Browse files
committed
Add Python 3.14, drop 3.9
1 parent 1446040 commit b74e824

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
test:
1010
strategy:
1111
matrix:
12-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
12+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
1313
platform: [ubuntu-latest, macos-latest, windows-latest]
1414
runs-on: ${{ matrix.platform }}
1515
steps:

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def build_and_check_dists(session):
3737
session.run("python", "-m", "twine", "check", "dist/*")
3838

3939

40-
@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13"])
40+
@nox.session(python=["3.10", "3.11", "3.12", "3.13", "3.14"])
4141
def tests(session):
4242
session.install("pytest")
4343
session.install("pytest-asyncio")

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name = "jsonata-python"
1010
version = "0.6.1"
1111
description = "Pure Python implementation of JSONata"
1212
readme = "README.md"
13-
requires-python = ">=3.9"
13+
requires-python = ">=3.10"
1414
license = {file = "LICENSE"}
1515
keywords = ["jsonata", "json"]
1616
authors = [

0 commit comments

Comments
 (0)