Skip to content

Commit 3cc351b

Browse files
fix aerospike python client version (#12)
* Fix aerospike client python version. * Fix documentation. * Update README.md
1 parent 44a15c7 commit 3cc351b

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

committee/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,8 @@ by running
3434
```
3535
and then running
3636
```
37-
docker build -f committee/Dockerfile .
37+
docker build -f committee/Dockerfile build/Release
3838
```
39-
from the build directory (build/Release).
4039

4140
## Running the Committee Service
4241
The docker image expects to find a `config.yaml` file in its root directory. This file should be

committee/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
version='0.1',
66
packages=find_packages(),
77
install_requires=[
8-
'aerospike==3.9.0',
8+
'aerospike==4.0.0',
99
'aioredis==1.2.0',
1010
'fastecdsa==1.7.2',
1111
'marshmallow-dataclass==7.1.0',

storage/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
packages=find_packages(),
1717
namespace_packages=['starkware'],
1818
install_requires=[
19-
'aerospike==3.9.0',
19+
'aerospike==4.0.0',
2020
'aiobotocore==0.11.0',
2121
'aioredis==1.2.0',
2222
'aioredlock==0.3.0',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ deps=
1616
--no-cache-dir
1717
--force-reinstall
1818
--extra-index-url=https://test.pypi.org/simple/
19-
aerospike==3.9.0
19+
aerospike==4.0.0
2020
fastecdsa==1.7.2
2121

2222
pytest-asyncio

0 commit comments

Comments
 (0)