Skip to content

Commit

Permalink
Merge branch 'master' of github.com:vyperlang/titanoboa into debug-fr…
Browse files Browse the repository at this point in the history
…ames
  • Loading branch information
DanielSchiavini committed Jan 12, 2024
2 parents 57cb3ea + 4d75e78 commit ab5380a
Show file tree
Hide file tree
Showing 25 changed files with 2,176 additions and 371 deletions.
11 changes: 11 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
### What I did

### How I did it

### How to verify it

### Description for the changelog

### Cute Animal Picture

![Put a link to a cute animal picture inside the parenthesis-->]()
18 changes: 10 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,28 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
rev: v4.5.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- repo: https://github.com/psf/black
rev: 22.3.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 23.12.0
hooks:
- id: black
args:
- -C
- --target-version=py38
- --skip-magic-trailing-comma
- --target-version=py310
- repo: https://github.com/PyCQA/flake8
rev: 3.9.2
rev: 6.1.0
hooks:
- id: flake8
- repo: https://github.com/pre-commit/mirrors-isort
rev: v5.10.1
- repo: https://github.com/PyCQA/isort
rev: 5.13.2
hooks:
- id: isort
# profile and line-length to avoid clashes with black
args: ["--profile=black", "--line-length=88"]

default_language_version:
python: python3.10
5 changes: 5 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ build:
sphinx:
configuration: docs/source/conf.py

# Explicitly set the version of Python and its requirements
python:
install:
- requirements: docs/requirements.txt

# If using Sphinx, optionally build your docs in additional formats such as PDF
# formats:
# - pdf
11 changes: 10 additions & 1 deletion boa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,16 @@

from boa.debugger import BoaDebug
from boa.environment import Env, enable_pyevm_verbose_logging, patch_opcode
from boa.interpret import BoaError, load, load_abi, load_partial, loads, loads_abi, loads_partial
from boa.interpret import (
BoaError,
from_etherscan,
load,
load_abi,
load_partial,
loads,
loads_abi,
loads_partial,
)
from boa.precompile import precompile
from boa.test.strategies import fuzz
from boa.vyper.contract import check_boa_error_matches
Expand Down
Loading

0 comments on commit ab5380a

Please sign in to comment.