Skip to content

Commit 5bfb982

Browse files
committed
Use PEP 508 URL format for charm-crypto dependency
The pip option `--process-dependency-links` is no longer supported.
1 parent 98c55d4 commit 5bfb982

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ WORKDIR $SRC
2626
ADD . $SRC/
2727

2828
RUN pip install --upgrade pip
29-
RUN pip install --process-dependency-links -e .[dev]
29+
RUN pip install -e .[dev]
3030

3131
# Run tests by default
3232
CMD sh test.sh

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
'ecdsa',
2828
'zfec>=1.5.0',
2929
'gipc',
30-
'charm-crypto>=0.50',
30+
'charm-crypto @ https://github.com/JHUISI/charm.git@dev',
3131
'coincurve',
3232
]
3333

@@ -81,7 +81,4 @@
8181
'dev': dev_require + tests_require + docs_require,
8282
'docs': docs_require,
8383
},
84-
dependency_links=[
85-
'git+https://github.com/JHUISI/charm.git@dev#egg=0.50',
86-
],
8784
)

0 commit comments

Comments
 (0)