Skip to content
Open
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Binary file removed 0bf4c1c413ed1d8eb97f__mypyc.cp310-win_amd64.pyd
Binary file not shown.
Binary file removed 0bf4c1c413ed1d8eb97f__mypyc.cp311-win_amd64.pyd
Binary file not shown.
Binary file removed 0bf4c1c413ed1d8eb97f__mypyc.cp312-win_amd64.pyd
Binary file not shown.
Binary file removed 0bf4c1c413ed1d8eb97f__mypyc.cp313-win_amd64.pyd
Binary file not shown.
Binary file removed 0bf4c1c413ed1d8eb97f__mypyc.cp314-win_amd64.pyd
Binary file not shown.
Binary file removed 0bf4c1c413ed1d8eb97f__mypyc.cpython-310-darwin.so
Binary file not shown.
Binary file not shown.
Binary file removed 0bf4c1c413ed1d8eb97f__mypyc.cpython-311-darwin.so
Binary file not shown.
Binary file not shown.
Binary file removed 0bf4c1c413ed1d8eb97f__mypyc.cpython-312-darwin.so
Binary file not shown.
Binary file not shown.
Binary file removed 0bf4c1c413ed1d8eb97f__mypyc.cpython-313-darwin.so
Binary file not shown.
Binary file not shown.
Binary file removed 0bf4c1c413ed1d8eb97f__mypyc.cpython-314-darwin.so
Binary file not shown.
Binary file not shown.
34 changes: 33 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,39 @@ benchmark:
poetry run brownie run examples/benchmark

mypyc:
mypyc dank_mids/_batch.py dank_mids/_demo_mode.py dank_mids/_envs.py dank_mids/_eth_utils.py dank_mids/_exceptions.py dank_mids/_logging.py dank_mids/_tasks.py dank_mids/_uid.py dank_mids/_vendor/aiolimiter/src dank_mids/_web3/abi.py dank_mids/_web3/formatters.py dank_mids/brownie_patch/__init__.py dank_mids/brownie_patch/_abi.py dank_mids/brownie_patch/call.py dank_mids/brownie_patch/overloaded.py dank_mids/brownie_patch/types.py dank_mids/helpers/__init__.py dank_mids/helpers/_codec.py dank_mids/helpers/_errors.py dank_mids/helpers/_gather.py dank_mids/helpers/_rate_limit.py dank_mids/helpers/_weaklist.py dank_mids/helpers/batch_size.py dank_mids/helpers/hashing.py dank_mids/helpers/lru_cache.py dank_mids/helpers/method.py dank_mids/stats/__init__.py dank_mids/constants.py dank_mids/controller.py dank_mids/ENVIRONMENT_VARIABLES.py --strict --pretty --disable-error-code=unused-ignore
mypyc dank_mids/_batch.py \
dank_mids/_demo_mode.py \
dank_mids/_envs.py \
dank_mids/_eth_utils.py \
dank_mids/_exceptions.py \
dank_mids/_logging.py \
dank_mids/_tasks.py \
dank_mids/_uid.py \
dank_mids/_vendor/aiolimiter/src \
dank_mids/_web3/abi.py \
dank_mids/_web3/formatters.py \
dank_mids/brownie_patch/__init__.py \
dank_mids/brownie_patch/_abi.py \
dank_mids/brownie_patch/call.py \
dank_mids/brownie_patch/overloaded.py \
dank_mids/brownie_patch/types.py \
dank_mids/helpers/__init__.py \
dank_mids/helpers/_codec.py \
dank_mids/helpers/_errors.py \
dank_mids/helpers/_event.py \
dank_mids/helpers/_gather.py \
dank_mids/helpers/_rate_limit.py \
dank_mids/helpers/_weaklist.py \
dank_mids/helpers/batch_size.py \
dank_mids/helpers/hashing.py \
dank_mids/helpers/lru_cache.py \
dank_mids/helpers/method.py \
dank_mids/stats/__init__.py \
dank_mids/constants.py \
dank_mids/controller.py \
dank_mids/ENVIRONMENT_VARIABLES.py \
--strict --pretty \
--disable-error-code=unused-ignore


# Vendoring
Expand Down
Loading