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

0.9.3 move queries et al to bal_tools package. #269

Merged
merged 19 commits into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
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: 0 additions & 2 deletions bal_addresses/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,3 @@
ChecksumError,
UnexpectedListLengthError,
)
from .subgraph import Subgraph
from .pools_gauges import BalPoolsGauges
215 changes: 0 additions & 215 deletions bal_addresses/pools_gauges.py

This file was deleted.

1 change: 1 addition & 0 deletions bal_addresses/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
pathlib>=1.0
git+https://github.com/BalancerMaxis/bal_toolsv0.0.1
Tritium-VLK marked this conversation as resolved.
Show resolved Hide resolved
requests
pandas
web3
Expand Down
91 changes: 0 additions & 91 deletions bal_addresses/subgraph.py

This file was deleted.

2 changes: 1 addition & 1 deletion gen_core_pools.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import json
from bal_addresses.pools_gauges import BalPoolsGauges
from bal_tools import BalPoolsGauges


def main():
Expand Down
4 changes: 2 additions & 2 deletions gen_pools_and_gauges.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import pandas as pd
import requests

from bal_addresses.pools_gauges import BalPoolsGauges
from bal_addresses.subgraph import Subgraph
from bal_tools import BalPoolsGauges
from bal_tools import Subgraph


NO_GAUGE_SUBGRAPH = ["bsc", "kovan", "fantom", "rinkeby"]
Expand Down
3 changes: 1 addition & 2 deletions gen_subgraph_urls.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import json

import requests

from bal_addresses.subgraph import Subgraph
from bal_tools.subgraph import Subgraph


def main():
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

VERSION = "0.9.1"
VERSION = "0.9.3"
DESCRIPTION = "Balancer Maxi Addressbook"
LONG_DESCRIPTION = "Balancer Maxi Addressbook and Balancer Permissions helper"

Expand All @@ -14,7 +14,7 @@
long_description=LONG_DESCRIPTION,
packages=find_packages(),
include_package_data=True, # Automatically include non-Python files
package_data={"": ["graphql/**/*.gql", "abis/*.json"]},
package_data={"": ["abis/*.json"]},
url="https://github.com/BalancerMaxis/bal_addresses",
install_requires=[
"setuptools>=42",
Expand All @@ -23,6 +23,7 @@
"web3",
"gql[requests]",
"requests",
"bal_tools @ git+https://github.com/BalancerMaxis/[email protected]",
],
keywords=["python", "first package"],
classifiers=[
Expand Down
Loading