streaming-json-parser-native 0.2.0__tar.gz → 0.2.1__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.
@@ -443,7 +443,7 @@ dependencies = [
443
443
 
444
444
  [[package]]
445
445
  name = "streaming_json_parser_native"
446
- version = "0.2.0"
446
+ version = "0.2.1"
447
447
  dependencies = [
448
448
  "pyo3",
449
449
  "serde_json",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "streaming_json_parser_native"
3
- version = "0.2.0"
3
+ version = "0.2.1"
4
4
  edition = "2021"
5
5
  rust-version = "1.83"
6
6
  description = "Optional native acceleration for streaming-json-parser"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: streaming-json-parser-native
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Experimental native extensions for streaming-json-parser.
5
5
  License-Expression: MIT
6
6
  Requires-Python: >=3.10
@@ -17,10 +17,10 @@ native extension with:
17
17
  python -m pip install streaming-json-parser streaming-json-parser-native
18
18
  ```
19
19
 
20
- The initial release provides a prebuilt wheel for CPython 3.12 on Linux x86_64.
21
- On other Python versions or platforms, pip builds from the source distribution,
22
- which requires Rust 1.83 or newer. The Python package works without the native
23
- extension.
20
+ Version 0.2.1 provides a prebuilt wheel for CPython 3.12 on Linux x86_64 and
21
+ for CPython 3.10 through 3.14 on macOS arm64. For other Python versions or
22
+ platforms, pip builds from the source distribution, which requires Rust 1.83 or
23
+ newer. The Python package works without the native extension.
24
24
 
25
25
  To build and install the extension from this checkout, activate a Python
26
26
  virtual environment and run these commands from the repository root:
@@ -9,10 +9,10 @@ native extension with:
9
9
  python -m pip install streaming-json-parser streaming-json-parser-native
10
10
  ```
11
11
 
12
- The initial release provides a prebuilt wheel for CPython 3.12 on Linux x86_64.
13
- On other Python versions or platforms, pip builds from the source distribution,
14
- which requires Rust 1.83 or newer. The Python package works without the native
15
- extension.
12
+ Version 0.2.1 provides a prebuilt wheel for CPython 3.12 on Linux x86_64 and
13
+ for CPython 3.10 through 3.14 on macOS arm64. For other Python versions or
14
+ platforms, pip builds from the source distribution, which requires Rust 1.83 or
15
+ newer. The Python package works without the native extension.
16
16
 
17
17
  To build and install the extension from this checkout, activate a Python
18
18
  virtual environment and run these commands from the repository root:
@@ -4,7 +4,7 @@ build-backend = "maturin"
4
4
 
5
5
  [project]
6
6
  name = "streaming-json-parser-native"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  description = "Experimental native extensions for streaming-json-parser."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"