Skip to content

Commit

Permalink
update dependencies in the setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kPsarakis committed Jan 13, 2024
1 parent 226e26a commit 67610fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
]
setuptools.setup(
name="kevo",
version="0.2.0",
version="0.2.1",
author="Nikos Gavalas",
description="Key-value store with 3 backend engines",
classifiers=classifiers,
keywords=["key-value", "store"],
packages=setuptools.find_packages(),
install_requires=[
'sortedcontainers >= 2.4.0, < 3',
'bitarray >= 2.8.2, < 3',
'mmh3 >= 4.0.1, < 5',
'minio >= 7.1.17, < 8',
'bitarray >= 2.9.2, < 3',
'mmh3 >= 4.1.0, < 5',
'minio >= 7.1.20, < 8',
],
python_requires='>=3.11',
)

0 comments on commit 67610fc

Please sign in to comment.