simple_jsonpath 0.4.3__tar.gz → 0.4.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -493,7 +493,7 @@ dependencies = [
493
493
 
494
494
  [[package]]
495
495
  name = "simple_jsonpath"
496
- version = "0.4.3"
496
+ version = "0.4.4"
497
497
  dependencies = [
498
498
  "pyo3",
499
499
  "rstest",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "simple_jsonpath"
3
- version = "0.4.3"
3
+ version = "0.4.4"
4
4
  edition = "2024"
5
5
  readme = "README.md"
6
6
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: simple_jsonpath
3
- Version: 0.4.3
3
+ Version: 0.4.4
4
4
  Classifier: Intended Audience :: Developers
5
5
  Classifier: Programming Language :: Rust
6
6
  Classifier: Programming Language :: Python :: Implementation :: CPython
@@ -12,6 +12,7 @@ Classifier: Programming Language :: Python :: 3.12
12
12
  Classifier: Programming Language :: Python :: 3.13
13
13
  Classifier: Programming Language :: Python :: 3.14
14
14
  Requires-Dist: orjson>=3.11.7
15
+ Requires-Dist: typing-extensions>=4.0.0,<5.0.0
15
16
  License-File: LICENSE
16
17
  Summary: A simple - yet quick - JSONPath implementation for querying JSON data.
17
18
  Keywords: jsonpath
@@ -29,7 +29,8 @@ keywords = ["jsonpath"]
29
29
  dynamic = ["version"]
30
30
 
31
31
  dependencies = [
32
- "orjson>=3.11.7"
32
+ "orjson>=3.11.7",
33
+ "typing_extensions>=4.0.0,<5.0.0"
33
34
  ]
34
35
 
35
36
  [tool.maturin]
@@ -0,0 +1,10 @@
1
+ [tox]
2
+ envlist = py310,py311,py312,py313,py314
3
+ isolated_build = True
4
+
5
+ [testenv]
6
+ deps =
7
+ jsonpath_ng
8
+ jmespath
9
+ orjson
10
+ commands = python3 test/path.py
File without changes