astreum 0.2.5__tar.gz → 0.2.6__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 astreum might be problematic. Click here for more details.

Files changed (24) hide show
  1. {astreum-0.2.5/src/astreum.egg-info → astreum-0.2.6}/PKG-INFO +1 -1
  2. {astreum-0.2.5 → astreum-0.2.6}/pyproject.toml +1 -1
  3. {astreum-0.2.5 → astreum-0.2.6}/src/astreum/node.py +1 -1
  4. {astreum-0.2.5 → astreum-0.2.6/src/astreum.egg-info}/PKG-INFO +1 -1
  5. {astreum-0.2.5 → astreum-0.2.6}/LICENSE +0 -0
  6. {astreum-0.2.5 → astreum-0.2.6}/README.md +0 -0
  7. {astreum-0.2.5 → astreum-0.2.6}/setup.cfg +0 -0
  8. {astreum-0.2.5 → astreum-0.2.6}/src/astreum/__init__.py +0 -0
  9. {astreum-0.2.5 → astreum-0.2.6}/src/astreum/_node/__init__.py +0 -0
  10. {astreum-0.2.5 → astreum-0.2.6}/src/astreum/_node/storage/__init__.py +0 -0
  11. {astreum-0.2.5 → astreum-0.2.6}/src/astreum/_node/storage/merkle.py +0 -0
  12. {astreum-0.2.5 → astreum-0.2.6}/src/astreum/_node/storage/patricia.py +0 -0
  13. {astreum-0.2.5 → astreum-0.2.6}/src/astreum/crypto/__init__.py +0 -0
  14. {astreum-0.2.5 → astreum-0.2.6}/src/astreum/crypto/ed25519.py +0 -0
  15. {astreum-0.2.5 → astreum-0.2.6}/src/astreum/crypto/x25519.py +0 -0
  16. {astreum-0.2.5 → astreum-0.2.6}/src/astreum/format.py +0 -0
  17. {astreum-0.2.5 → astreum-0.2.6}/src/astreum/lispeum/__init__.py +0 -0
  18. {astreum-0.2.5 → astreum-0.2.6}/src/astreum/lispeum/parser.py +0 -0
  19. {astreum-0.2.5 → astreum-0.2.6}/src/astreum/lispeum/tokenizer.py +0 -0
  20. {astreum-0.2.5 → astreum-0.2.6}/src/astreum.egg-info/SOURCES.txt +0 -0
  21. {astreum-0.2.5 → astreum-0.2.6}/src/astreum.egg-info/dependency_links.txt +0 -0
  22. {astreum-0.2.5 → astreum-0.2.6}/src/astreum.egg-info/requires.txt +0 -0
  23. {astreum-0.2.5 → astreum-0.2.6}/src/astreum.egg-info/top_level.txt +0 -0
  24. {astreum-0.2.5 → astreum-0.2.6}/tests/test_node_machine.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: astreum
3
- Version: 0.2.5
3
+ Version: 0.2.6
4
4
  Summary: Python library to interact with the Astreum blockchain and its Lispeum virtual machine.
5
5
  Author-email: "Roy R. O. Okello" <roy@stelar.xyz>
6
6
  Project-URL: Homepage, https://github.com/astreum/lib
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "astreum"
3
- version = "0.2.5"
3
+ version = "0.2.6"
4
4
  authors = [
5
5
  { name="Roy R. O. Okello", email="roy@stelar.xyz" },
6
6
  ]
@@ -309,7 +309,7 @@ class Env:
309
309
 
310
310
 
311
311
  class Node:
312
- def __init__(self, config: dict):
312
+ def __init__(self, config: dict = {}):
313
313
  self._machine_setup()
314
314
  machine_only = bool(config.get('machine-only', True))
315
315
  if not machine_only:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: astreum
3
- Version: 0.2.5
3
+ Version: 0.2.6
4
4
  Summary: Python library to interact with the Astreum blockchain and its Lispeum virtual machine.
5
5
  Author-email: "Roy R. O. Okello" <roy@stelar.xyz>
6
6
  Project-URL: Homepage, https://github.com/astreum/lib
File without changes
File without changes
File without changes
File without changes
File without changes