Use published curdleproofs version
This commit is contained in:
parent
db502ddd6a
commit
a74b4fca10
9
Makefile
9
Makefile
|
@ -111,13 +111,8 @@ preinstallation:
|
||||||
|
|
||||||
# installs the packages to run pyspec tests
|
# installs the packages to run pyspec tests
|
||||||
install_test: preinstallation
|
install_test: preinstallation
|
||||||
. venv/bin/activate; \
|
python3 -m venv venv; . venv/bin/activate; \
|
||||||
python3 -m pip install -e .; \
|
python3 -m pip install -e .[lint]; python3 -m pip install -e .[test]
|
||||||
python3 -m pip install -e .[lint,test]; \
|
|
||||||
python3 -m pip freeze; \
|
|
||||||
python3 -m pip uninstall -y curdleproofs; \
|
|
||||||
python3 -m pip install "git+https://github.com/nalinbhardwaj/curdleproofs.pie@bc4bb34961a896af6bcf4a5ff4867bb2971742c8#egg=curdleproofs&subdirectory=curdleproofs"; \
|
|
||||||
python3 -m pip freeze;
|
|
||||||
|
|
||||||
# Testing against `minimal` or `mainnet` config by default
|
# Testing against `minimal` or `mainnet` config by default
|
||||||
test: pyspec
|
test: pyspec
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -534,7 +534,6 @@ setup(
|
||||||
"lru-dict==1.2.0",
|
"lru-dict==1.2.0",
|
||||||
MARKO_VERSION,
|
MARKO_VERSION,
|
||||||
"py_arkworks_bls12381==0.3.4",
|
"py_arkworks_bls12381==0.3.4",
|
||||||
# NOTE: When changing this commit, you must update Makefile 'install_test' command too
|
"curdleproofs==0.1.1",
|
||||||
"curdleproofs @ git+https://github.com/nalinbhardwaj/curdleproofs.pie@bc4bb34961a896af6bcf4a5ff4867bb2971742c8#egg=curdleproofs&subdirectory=curdleproofs",
|
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue