diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7eef0e1568..6dcf14d557 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,7 +39,7 @@ jobs: - name: Generate Binary run: >- - pip install --no-binary pycryptodome . && + pip install --no-binary pycryptodome --no-binary cbor2 . && pip install pyinstaller && make freeze diff --git a/vyper/cli/vyper_compile.py b/vyper/cli/vyper_compile.py index 9c97f8c667..bdd01eebbe 100755 --- a/vyper/cli/vyper_compile.py +++ b/vyper/cli/vyper_compile.py @@ -41,6 +41,7 @@ opcodes_runtime - List of runtime opcodes as a string ir - Intermediate representation in list format ir_json - Intermediate representation in JSON format +ir_runtime - Intermediate representation of runtime bytecode in list format asm - Output the EVM assembly of the deployable bytecode hex-ir - Output IR and assembly constants in hex instead of decimal """