Skip to content

Commit

Permalink
Merge pull request #49 from SmithSamuelM/main
Browse files Browse the repository at this point in the history
More functionality and test for memogram support
  • Loading branch information
SmithSamuelM authored Feb 26, 2025
2 parents fe18c95 + 9d42a2d commit 17301d4
Show file tree
Hide file tree
Showing 7 changed files with 532 additions and 120 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

setup(
name='hio',
version='0.6.17', # also change in src/hio/__init__.py
version='0.7.0', # also change in src/hio/__init__.py
license='Apache Software License 2.0',
description='Hierarchical Concurrency with Async IO',
long_description=("HIO Hierarchical Concurrency and Asynchronous IO Library. "
Expand Down
2 changes: 1 addition & 1 deletion src/hio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
hio package
"""

__version__ = '0.6.17' # also change in setup.py
__version__ = '0.7.0' # also change in setup.py

from .hioing import Mixin, HioError, ValidationError, VersionError
2 changes: 1 addition & 1 deletion src/hio/core/memo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""


from .memoing import (Versionage, Sizage, GramDex,
from .memoing import (Versionage, Sizage, GramDex, SGDex,
openMemoer, Memoer, MemoerDoer,
openTM, TymeeMemoer, TymeeMemoerDoer)

Loading

0 comments on commit 17301d4

Please sign in to comment.