diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 06fd9f8..08b2e51 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -9,7 +9,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 with: diff --git a/README.md b/README.md index 7e3bb7f..073bf58 100644 --- a/README.md +++ b/README.md @@ -114,7 +114,7 @@ products = jsonpath.find("$..products.*", data).values() 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). -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. +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. Each `JSONPathNode` has: