ormsgpack 1.9.0__tar.gz → 1.9.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.

Potentially problematic release.


This version of ormsgpack might be problematic. Click here for more details.

Files changed (54) hide show
  1. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/CHANGELOG.md +6 -0
  2. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/Cargo.lock +1 -1
  3. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/Cargo.toml +1 -1
  4. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/PKG-INFO +1 -1
  5. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/pyproject.toml +3 -2
  6. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/LICENSE-APACHE +0 -0
  7. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/LICENSE-MIT +0 -0
  8. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/README.md +0 -0
  9. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/build.rs +0 -0
  10. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/python/ormsgpack/__init__.py +0 -0
  11. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/python/ormsgpack/__init__.pyi +0 -0
  12. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/python/ormsgpack/_pyinstaller/__init__.py +0 -0
  13. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/python/ormsgpack/_pyinstaller/hook-ormsgpack.py +0 -0
  14. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/python/ormsgpack/py.typed +0 -0
  15. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/deserialize/cache.rs +0 -0
  16. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/deserialize/deserializer.rs +0 -0
  17. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/deserialize/error.rs +0 -0
  18. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/deserialize/mod.rs +0 -0
  19. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/exc.rs +0 -0
  20. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/ext.rs +0 -0
  21. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/ffi.rs +0 -0
  22. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/lib.rs +0 -0
  23. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/msgpack/array.rs +0 -0
  24. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/msgpack/bin.rs +0 -0
  25. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/msgpack/bool.rs +0 -0
  26. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/msgpack/ext.rs +0 -0
  27. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/msgpack/float.rs +0 -0
  28. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/msgpack/int.rs +0 -0
  29. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/msgpack/map.rs +0 -0
  30. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/msgpack/marker.rs +0 -0
  31. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/msgpack/mod.rs +0 -0
  32. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/msgpack/nil.rs +0 -0
  33. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/msgpack/str.rs +0 -0
  34. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/opt.rs +0 -0
  35. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/serialize/bytes.rs +0 -0
  36. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/serialize/dataclass.rs +0 -0
  37. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/serialize/datetime.rs +0 -0
  38. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/serialize/datetimelike.rs +0 -0
  39. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/serialize/default.rs +0 -0
  40. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/serialize/dict.rs +0 -0
  41. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/serialize/ext.rs +0 -0
  42. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/serialize/int.rs +0 -0
  43. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/serialize/list.rs +0 -0
  44. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/serialize/mod.rs +0 -0
  45. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/serialize/numpy.rs +0 -0
  46. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/serialize/pydantic.rs +0 -0
  47. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/serialize/serializer.rs +0 -0
  48. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/serialize/str.rs +0 -0
  49. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/serialize/tuple.rs +0 -0
  50. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/serialize/uuid.rs +0 -0
  51. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/serialize/writer.rs +0 -0
  52. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/typeref.rs +0 -0
  53. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/unicode.rs +0 -0
  54. {ormsgpack-1.9.0 → ormsgpack-1.9.1}/src/util.rs +0 -0
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.9.1 28/03/2025
4
+
5
+ ### Changed
6
+
7
+ - Add musllinux wheels [#366](/../../issues/366)
8
+
3
9
  ## 1.9.0 23/03/2025
4
10
 
5
11
  ### Changed
@@ -101,7 +101,7 @@ checksum = "d75b0bedcc4fe52caa0e03d9f1151a323e4aa5e2d78ba3580400cd3c9e2bc4bc"
101
101
 
102
102
  [[package]]
103
103
  name = "ormsgpack"
104
- version = "1.9.0"
104
+ version = "1.9.1"
105
105
  dependencies = [
106
106
  "ahash",
107
107
  "bytecount",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "ormsgpack"
3
- version = "1.9.0"
3
+ version = "1.9.1"
4
4
  authors = [
5
5
  "Aviram Hassan <aviramyhassan@gmail.com>",
6
6
  "Emanuele Giaquinta <emanuele.giaquinta@gmail.com>",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ormsgpack
3
- Version: 1.9.0
3
+ Version: 1.9.1
4
4
  Classifier: Development Status :: 5 - Production/Stable
5
5
  Classifier: Intended Audience :: Developers
6
6
  Classifier: License :: OSI Approved :: Apache Software License
@@ -28,7 +28,8 @@ dev = [
28
28
  "msgpack",
29
29
  "mypy",
30
30
  "numpy; platform_machine != 'armv7l'",
31
- "pendulum; platform_machine != 'armv7l' and python_version < '3.13'",
31
+ # importing pendulum makes python crash on alpine
32
+ # "pendulum; platform_machine != 'armv7l' and python_version < '3.13'",
32
33
  "pydantic",
33
34
  "pytest",
34
35
  "pytest-benchmark",
@@ -52,7 +53,7 @@ exclude = "benchmarks"
52
53
  strict = true
53
54
 
54
55
  [[tool.mypy.overrides]]
55
- module = ["msgpack"]
56
+ module = ["msgpack", "pendulum"]
56
57
  ignore_missing_imports = true
57
58
 
58
59
  [tool.ruff]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes