Skip to content

Commit

Permalink
feat: v0.2.1 (#11)
Browse files Browse the repository at this point in the history
* feat: prep for v0.2.1

* fix: tests remove unneeded block
  • Loading branch information
fp-crypto authored Oct 6, 2022
1 parent 2bb0f72 commit debe8aa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 23 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ It provides an easy-to-use API for generating weiroll programs that can then be
## Installation

```
pip install weiroll-py==0.2.0
pip install weiroll-py==0.2.1
```

where `0.2.0` is the latest version.
where `0.2.1` is the latest version.

## Usage

Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "weiroll-py"
version = "0.2.0"
version = "0.2.1"
description = "Build weiroll transactions with brownie"
authors = ["FP <[email protected]>"]
license = "MIT"
Expand All @@ -9,7 +9,7 @@ packages = [
]

[tool.poetry.dependencies]
python = ">=3.9,<3.10"
python = ">=3.9,<3.11"
eth-brownie = "^v1.17"

[tool.poetry.dev-dependencies]
Expand Down
17 changes: 0 additions & 17 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,6 @@
import pytest
from brownie import config, Contract, network
import requests
from weiroll import WeirollContract

# @pytest.fixture(scope="session", autouse=True)
# def _tenderly_fork():
# import requests
# import brownie
#
# fork_base_url = "https://simulate.yearn.network/fork"
# payload = {"network_id": "1"}
# resp = requests.post(fork_base_url, headers={}, json=payload)
# fork_id = resp.json()["simulation_fork"]["id"]
# fork_rpc_url = f"https://rpc.tenderly.co/fork/{fork_id}"
# print(fork_rpc_url)
# tenderly_provider = brownie.web3.HTTPProvider(fork_rpc_url, {"timeout": 600})
# brownie.web3.provider = tenderly_provider
# print(f"https://dashboard.tenderly.co/yearn/yearn-web/fork/{fork_id}")


@pytest.fixture(scope="function", autouse=True)
def shared_setup(fn_isolation):
Expand Down

0 comments on commit debe8aa

Please sign in to comment.