From a74b4fca10ec1398a869cf33f438e8949d7c15e2 Mon Sep 17 00:00:00 2001 From: dapplion <35266934+dapplion@users.noreply.github.com> Date: Fri, 18 Aug 2023 15:15:59 +0200 Subject: [PATCH] Use published curdleproofs version --- Makefile | 9 ++------- setup.py | 3 +-- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 91b82a725..16d189c05 100644 --- a/Makefile +++ b/Makefile @@ -111,13 +111,8 @@ preinstallation: # installs the packages to run pyspec tests install_test: preinstallation - . venv/bin/activate; \ - python3 -m pip install -e .; \ - 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; + python3 -m venv venv; . venv/bin/activate; \ + python3 -m pip install -e .[lint]; python3 -m pip install -e .[test] # Testing against `minimal` or `mainnet` config by default test: pyspec diff --git a/setup.py b/setup.py index d0e4b8664..5748d248e 100644 --- a/setup.py +++ b/setup.py @@ -534,7 +534,6 @@ setup( "lru-dict==1.2.0", MARKO_VERSION, "py_arkworks_bls12381==0.3.4", - # NOTE: When changing this commit, you must update Makefile 'install_test' command too - "curdleproofs @ git+https://github.com/nalinbhardwaj/curdleproofs.pie@bc4bb34961a896af6bcf4a5ff4867bb2971742c8#egg=curdleproofs&subdirectory=curdleproofs", + "curdleproofs==0.1.1", ] )