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

Hyperdrivetypes to v 1.0.20.8, using pypechain 0.0.45 #1192

Merged
merged 4 commits into from
Oct 16, 2024
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion python/hyperdrivetypes/hyperdrivetypes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,3 @@
RedeemWithdrawalSharesEventFP,
RemoveLiquidityEventFP,
)
from .types import *
5 changes: 3 additions & 2 deletions python/hyperdrivetypes/hyperdrivetypes/fixedpoint_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
from dataclasses import dataclass

from fixedpointmath import FixedPoint
from hyperdrivetypes.types.IHyperdriveTypes import (
from pypechain.core import BaseEventArgs

from .types.IHyperdrive import (
AddLiquidityEvent,
Checkpoint,
CloseLongEvent,
Expand All @@ -20,7 +22,6 @@
RedeemWithdrawalSharesEvent,
RemoveLiquidityEvent,
)
from pypechain.core import BaseEventArgs

# TODO: These dataclasses are similar to pypechain except for
# - snake_case attributes instead of camelCase
Expand Down
2 changes: 1 addition & 1 deletion python/hyperdrivetypes/prerequisite.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pypechain == 0.0.43
pypechain == 0.0.45
6 changes: 3 additions & 3 deletions python/hyperdrivetypes/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "hyperdrivetypes"
version = "1.0.19.7"
version = "1.0.20.8"

# Authors are the current, primary stewards of the repo
# contributors can be found on github
Expand All @@ -19,10 +19,10 @@ classifiers = [
"Natural Language :: English",
]

dependencies = ["pypechain==0.0.43", "fixedpointmath"]
dependencies = ["pypechain==0.0.45", "fixedpointmath"]

[project.optional-dependencies]
dev = ["pyright", "pytest"]
dev = ["pyright>=1.1.384", "pytest"]

all = [
"hyperdrivetypes[dev]",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
RedeemWithdrawalSharesEventFP,
RemoveLiquidityEventFP,
)
from hyperdrivetypes.types.IHyperdriveTypes import (
from hyperdrivetypes.types.IHyperdrive import (
AddLiquidityEvent,
Checkpoint,
CloseLongEvent,
Expand Down
Loading