pure-python-ds 1.0.0__tar.gz → 1.0.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.
Files changed (39) hide show
  1. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/PKG-INFO +1 -1
  2. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds.egg-info/PKG-INFO +1 -1
  3. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pyproject.toml +1 -1
  4. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/LICENSE +0 -0
  5. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/README.md +0 -0
  6. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/__init__.py +0 -0
  7. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/algorithms/__init__.py +0 -0
  8. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/algorithms/dp.py +0 -0
  9. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/algorithms/searching.py +0 -0
  10. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/algorithms/sorting.py +0 -0
  11. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/graphs/__init__.py +0 -0
  12. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/graphs/dsu.py +0 -0
  13. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/graphs/graph.py +0 -0
  14. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/linear/__init__.py +0 -0
  15. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/linear/doubly_linked_list.py +0 -0
  16. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/linear/hash_table.py +0 -0
  17. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/linear/heap.py +0 -0
  18. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/linear/queue.py +0 -0
  19. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/linear/singly_linked_list.py +0 -0
  20. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/linear/stack.py +0 -0
  21. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/nodes/__init__.py +0 -0
  22. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/nodes/b_tree_node.py +0 -0
  23. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/nodes/rb_node.py +0 -0
  24. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/trees/__init__.py +0 -0
  25. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/trees/avl_tree.py +0 -0
  26. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/trees/b_tree.py +0 -0
  27. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/trees/binary_search_tree.py +0 -0
  28. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/trees/binary_tree.py +0 -0
  29. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/trees/red_black_tree.py +0 -0
  30. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/trees/segment_tree.py +0 -0
  31. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/trees/trie.py +0 -0
  32. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds/trees/utils.py +0 -0
  33. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds.egg-info/SOURCES.txt +0 -0
  34. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds.egg-info/dependency_links.txt +0 -0
  35. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/pure_python_ds.egg-info/top_level.txt +0 -0
  36. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/setup.cfg +0 -0
  37. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/tests/test_avl_guaranteed.py +0 -0
  38. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/tests/test_core.py +0 -0
  39. {pure_python_ds-1.0.0 → pure_python_ds-1.0.1}/tests/test_coverage_completion.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pure-python-ds
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: A strictly typed, 100% test-covered data structures and algorithms library.
5
5
  Author: Parjad Minooei
6
6
  Project-URL: Documentation, https://ParjadM.github.io/pure-python-ds/
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pure-python-ds
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: A strictly typed, 100% test-covered data structures and algorithms library.
5
5
  Author: Parjad Minooei
6
6
  Project-URL: Documentation, https://ParjadM.github.io/pure-python-ds/
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
  [project]
6
6
  # You may need to change this if "pure-python-ds" is already taken on PyPI
7
7
  name = "pure-python-ds"
8
- version = "1.0.0"
8
+ version = "1.0.1"
9
9
  authors = [
10
10
  { name="Parjad Minooei" }
11
11
  ]
File without changes
File without changes
File without changes