Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

setup(
name='hio',
version='0.7.16', # also change in src/hio/__init__.py
version='0.7.17', # 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 Expand Up @@ -86,7 +86,7 @@
"structured concurrency",
# eg: 'keyword1', 'keyword2', 'keyword3',
],
python_requires='>=3.13.7',
python_requires='>=3.14.0',
install_requires=[
'lmdb>=1.7.5',
'msgpack>=1.1.2',
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,7 +3,7 @@
hio package
"""

__version__ = '0.7.16' # also change in setup.py
__version__ = '0.7.17' # also change in setup.py

from .hioing import (Mixin, HioError, SizeError, ValidationError, VersionError,
HierError)
2 changes: 1 addition & 1 deletion src/hio/core/packeting.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@



class Part(hioing.MixIn):
class Part(hioing.Mixin):
"""
Base class for packet part classes with .packed .size and len
"""
Expand Down