-
Notifications
You must be signed in to change notification settings - Fork 36
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
Use latest wallet package #354
Changes from 7 commits
62600b6
35d459b
99ed259
ce00d1e
ba4360d
e31d00b
fecb99d
345229a
1942161
5fc04d7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
changelog: | ||
exclude: | ||
labels: | ||
- ignore-for-release-notes | ||
categories: | ||
- title: What's Changed | ||
labels: | ||
- "*" |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ classifiers = [ | |
"Operating System :: OS Independent", | ||
"Intended Audience :: Developers" | ||
] | ||
|
||
dependencies = [ | ||
"toml>=0.10.2", | ||
"requests", | ||
|
@@ -27,7 +28,7 @@ dependencies = [ | |
"requests-cache", | ||
"rich==13.3.4", | ||
"multiversx-sdk-network-providers>=0.11.0", | ||
"multiversx-sdk-wallet>=0.7.0", | ||
"multiversx-sdk-wallet>=0.8.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here, we should protect against breaking changes, and add upper bounds, as well. Perhaps for all our libraries? In requirements.txt, as well. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done for our libraries |
||
"multiversx-sdk-core>=0.5.0" | ||
] | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 here we do not use
MessageV1
, correct.