pyochain 0.5.0__tar.gz → 0.5.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 pyochain might be problematic. Click here for more details.

Files changed (33) hide show
  1. {pyochain-0.5.0 → pyochain-0.5.1}/PKG-INFO +2 -2
  2. {pyochain-0.5.0 → pyochain-0.5.1}/README.md +1 -1
  3. {pyochain-0.5.0 → pyochain-0.5.1}/pyproject.toml +1 -1
  4. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/__init__.py +0 -0
  5. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_core/__init__.py +0 -0
  6. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_core/_main.py +0 -0
  7. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_core/_protocols.py +0 -0
  8. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_dict/__init__.py +0 -0
  9. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_dict/_exprs.py +0 -0
  10. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_dict/_filters.py +0 -0
  11. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_dict/_funcs.py +0 -0
  12. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_dict/_groups.py +0 -0
  13. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_dict/_iter.py +0 -0
  14. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_dict/_joins.py +0 -0
  15. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_dict/_main.py +0 -0
  16. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_dict/_nested.py +0 -0
  17. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_dict/_process.py +0 -0
  18. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_iter/__init__.py +0 -0
  19. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_iter/_aggregations.py +0 -0
  20. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_iter/_booleans.py +0 -0
  21. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_iter/_constructors.py +0 -0
  22. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_iter/_eager.py +0 -0
  23. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_iter/_filters.py +0 -0
  24. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_iter/_groups.py +0 -0
  25. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_iter/_joins.py +0 -0
  26. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_iter/_lists.py +0 -0
  27. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_iter/_main.py +0 -0
  28. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_iter/_maps.py +0 -0
  29. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_iter/_partitions.py +0 -0
  30. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_iter/_process.py +0 -0
  31. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_iter/_rolling.py +0 -0
  32. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/_iter/_tuples.py +0 -0
  33. {pyochain-0.5.0 → pyochain-0.5.1}/src/pyochain/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: pyochain
3
- Version: 0.5.0
3
+ Version: 0.5.1
4
4
  Summary: Add your description here
5
5
  Requires-Dist: cytoolz>=1.0.1
6
6
  Requires-Dist: more-itertools>=10.8.0
@@ -19,7 +19,7 @@ Manipulate data through composable chains of operations, enhancing readability a
19
19
  ## Installation
20
20
 
21
21
  ```bash
22
- uv add git+https://github.com/OutSquareCapital/pyochain.git
22
+ uv add pyochain
23
23
  ```
24
24
 
25
25
  ## API Reference 📖
@@ -9,7 +9,7 @@ Manipulate data through composable chains of operations, enhancing readability a
9
9
  ## Installation
10
10
 
11
11
  ```bash
12
- uv add git+https://github.com/OutSquareCapital/pyochain.git
12
+ uv add pyochain
13
13
  ```
14
14
 
15
15
  ## API Reference 📖
@@ -3,7 +3,7 @@ description = "Add your description here"
3
3
  name = "pyochain"
4
4
  readme = "README.md"
5
5
  requires-python = ">=3.12"
6
- version = "0.5.0"
6
+ version = "0.5.1"
7
7
 
8
8
  dependencies = ["cytoolz>=1.0.1", "more-itertools>=10.8.0", "rolling>=0.5.0"]
9
9
 
File without changes