Skip to content

Commit

Permalink
Fix pip install .[tests] issues
Browse files Browse the repository at this point in the history
- This is a workaround to get the indy-node devcontainer to build.
- Pin the version of `Cython` to `0.29.36` which is the last release before the v3 releases that cause the build errors.
- `Cython` - `python-rocksdb` python package dependency is actually at the indy-plenum level, so it needs to be fixed there.

Signed-off-by: Wade Barnes <[email protected]>
  • Loading branch information
WadeBarnes committed Nov 2, 2023
1 parent e249d48 commit 22af1db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ RUN apt-get update -y && apt-get install -y \
RUN pip3 install -U \
# Required by setup.py
setuptools==50.3.2 \
'pyzmq==22.3.0'
'pyzmq==22.3.0' \
Cython==0.29.36


# install fpm
Expand Down

0 comments on commit 22af1db

Please sign in to comment.