Skip to content

Commit

Permalink
Use PEP 508 URL format for charm-crypto dependency
Browse files Browse the repository at this point in the history
The pip option `--process-dependency-links` is no longer supported.
  • Loading branch information
sbellem committed Feb 22, 2019
1 parent 98c55d4 commit 5bfb982
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ WORKDIR $SRC
ADD . $SRC/

RUN pip install --upgrade pip
RUN pip install --process-dependency-links -e .[dev]
RUN pip install -e .[dev]

# Run tests by default
CMD sh test.sh
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
'ecdsa',
'zfec>=1.5.0',
'gipc',
'charm-crypto>=0.50',
'charm-crypto @ https://github.com/JHUISI/charm.git@dev',
'coincurve',
]

Expand Down Expand Up @@ -81,7 +81,4 @@
'dev': dev_require + tests_require + docs_require,
'docs': docs_require,
},
dependency_links=[
'git+https://github.com/JHUISI/charm.git@dev#egg=0.50',
],
)

0 comments on commit 5bfb982

Please sign in to comment.