Skip to content

Commit

Permalink
fix aerospike python client version (#12)
Browse files Browse the repository at this point in the history
* Fix aerospike client python version.
* Fix documentation.

* Update README.md
  • Loading branch information
alon-dotan-starkware authored Jun 28, 2022
1 parent 44a15c7 commit 3cc351b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions committee/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,8 @@ by running
```
and then running
```
docker build -f committee/Dockerfile .
docker build -f committee/Dockerfile build/Release
```
from the build directory (build/Release).

## Running the Committee Service
The docker image expects to find a `config.yaml` file in its root directory. This file should be
Expand Down
2 changes: 1 addition & 1 deletion committee/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
version='0.1',
packages=find_packages(),
install_requires=[
'aerospike==3.9.0',
'aerospike==4.0.0',
'aioredis==1.2.0',
'fastecdsa==1.7.2',
'marshmallow-dataclass==7.1.0',
Expand Down
2 changes: 1 addition & 1 deletion storage/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
packages=find_packages(),
namespace_packages=['starkware'],
install_requires=[
'aerospike==3.9.0',
'aerospike==4.0.0',
'aiobotocore==0.11.0',
'aioredis==1.2.0',
'aioredlock==0.3.0',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ deps=
--no-cache-dir
--force-reinstall
--extra-index-url=https://test.pypi.org/simple/
aerospike==3.9.0
aerospike==4.0.0
fastecdsa==1.7.2

pytest-asyncio
Expand Down

0 comments on commit 3cc351b

Please sign in to comment.