Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Proof queue #2147

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ all: poetry
# --------

PYTHON_BIN := python3.10
KEVM_PYK_DIR := ./kevm-pyk
KEVM_PYK_DIR := $(abspath ./kevm-pyk)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this change needed? Also, why is poetry.lock updated? These changes should probably be backed out, should only be updated by the auto-updater.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My version of Poetry (I think it is 1.6.1) complained about a relative path and this fixed it. I will try reverting poetry.lock and see whether it still works.

POETRY := poetry -C $(KEVM_PYK_DIR)
POETRY_RUN := $(POETRY) run --

Expand Down
Loading