Skip to content

Commit 4da76fa

Browse files
authored
Merge pull request #8 from jg-rp/py313
Test against Python 3.13
2 parents 408d90d + 33d87ec commit 4da76fa

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest, windows-latest, macos-latest]
12-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
12+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1313
steps:
1414
- uses: actions/checkout@v4
1515
with:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ products = jsonpath.find("$..products.*", data).values()
114114

115115
Apply JSONPath expression _query_ to _value_. _value_ should arbitrary, possible nested, Python dictionaries, lists, strings, integers, floats, Booleans or `None`, as you would get from [`json.load()`](https://docs.python.org/3/library/json.html#json.load).
116116

117-
A list of `JSONPathNode` instances is returned, one node for each value matched by _path_. The returned list will be empty if there were no matches.
117+
A list of `JSONPathNode` instances is returned, one node for each value matched by _query_. The returned list will be empty if there were no matches.
118118

119119
Each `JSONPathNode` has:
120120

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,11 @@ classifiers = [
2121
"Programming Language :: Python :: 3.10",
2222
"Programming Language :: Python :: 3.11",
2323
"Programming Language :: Python :: 3.12",
24+
"Programming Language :: Python :: 3.13",
2425
"Programming Language :: Python :: Implementation :: CPython",
2526
"Programming Language :: Python :: Implementation :: PyPy",
2627
]
27-
dependencies = ["regex", "iregexp-check>=0.1.3"]
28+
dependencies = ["regex", "iregexp-check>=0.1.4"]
2829

2930
[project.urls]
3031
Documentation = "https://jg-rp.github.io/python-jsonpath-rfc9535/"
@@ -65,7 +66,7 @@ lint = "ruff check ."
6566
typing = "mypy"
6667

6768
[[tool.hatch.envs.all.matrix]]
68-
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
69+
python = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
6970

7071
[tool.coverage.run]
7172
branch = true

0 commit comments

Comments
 (0)