Skip to content

Commit

Permalink
update dependencies and version
Browse files Browse the repository at this point in the history
  • Loading branch information
SmithSamuelM committed Sep 24, 2021
1 parent e022e78 commit 0d363c2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions setup.py
Expand Up @@ -37,7 +37,7 @@

setup(
name='hio',
version='0.5.0', # also change in src/hio/__init__.py
version='0.5.1', # 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 @@ -79,16 +79,17 @@
"structured concurrency",
# eg: 'keyword1', 'keyword2', 'keyword3',
],
python_requires='>=3.9.6',
python_requires='>=3.9.7',
install_requires=[
'netifaces>=0.11.0',
'lmdb>=1.2.1',
'pysodium>=0.7.9',
'blake3>=0.1.8',
'blake3>=0.2.0',
'msgpack>=1.0.2',
'simplejson>=3.17.2',
'cbor2>=5.2.0',
'simplejson>=3.17.5',
'cbor2>=5.4.1',
'multidict>=5.1.0',
'orderedset>=2.0.3',
],
extras_require={
# eg:
Expand All @@ -97,7 +98,7 @@
},
tests_require=[
'coverage>=5.5',
'pytest>=6.2.4',
'pytest>=6.2.5',
],
setup_requires=[
],
Expand Down
2 changes: 1 addition & 1 deletion src/hio/__init__.py
Expand Up @@ -3,6 +3,6 @@
hio package
"""

__version__ = '0.5.0' # also change in setup.py
__version__ = '0.5.1' # also change in setup.py

from .hioing import Mixin, HioError, ValidationError, VersionError

0 comments on commit 0d363c2

Please sign in to comment.