forked from fetchai/agents-aea
-
Notifications
You must be signed in to change notification settings - Fork 16
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
ACN to valory + docs #95
Merged
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
413859d
fix:changing links
Karrenbelt 1636152
chore:copies p2p-connection.md
Karrenbelt f0ed3a9
docs:updating to open-aea
Karrenbelt d7d0cc4
docs:updating to open-aea and open-acn
Karrenbelt e532628
docs:fix links and packages
Karrenbelt b6a660e
Merge remote-tracking branch 'origin/main' into ACN-docs
Karrenbelt d8d1231
trigger
Karrenbelt 70380cb
chore:move acn to packages.valory
Karrenbelt 3535791
chore:move acn protocol and libp2p connection
Karrenbelt 599ae43
chore:author to valory
Karrenbelt 09899f0
grunt:hardcoded paths
Karrenbelt 71cd0a2
grunt:linters
Karrenbelt 1c0bdc5
fix: workflow python@master -> python@v3
Karrenbelt cfca288
fix: adding packages/valory to makefile
Karrenbelt 51fef35
fix: revert
Karrenbelt f67bcb8
chore:versions to 0.1.0
Karrenbelt 5bdde4a
docs:author and version
Karrenbelt 61abae1
fix:updating hashes
Karrenbelt c64fa60
fix:prefixing author
Karrenbelt 9d36d50
fix:author prefix
Karrenbelt a149089
fix:add generate_all_protocols to Makefile
Karrenbelt 5fa041d
fix: address protobuf error by fixing version
DavidMinarsch 6a5b8b9
fix: pin version of protobuf in tox too
DavidMinarsch bf42590
test: increased time for failing test.
67c067b
pinning go version for protolint install
da780ae
final go version
93f1051
final go version
e580c0a
fix:golangci-lint
Karrenbelt 4cf16d5
fix:PR feedback
Karrenbelt 019f22b
test:update connection and protocol path
Karrenbelt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,10 @@ | |
import copy | ||
from typing import Any, Dict, Tuple | ||
|
||
from google.protobuf.struct_pb2 import ListValue, Struct | ||
from google.protobuf.struct_pb2 import ( # pylint: disable=no-name-in-module | ||
ListValue, | ||
Struct, | ||
) | ||
Comment on lines
+25
to
+28
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. Is 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. No it's not required anymore |
||
|
||
|
||
class DictProtobufStructSerializer: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
We use different versions throughout this file. That's not desirable. I propose we use
>=1.14.0 <=1.17.0
throughout as this makes explicit the ranges for which it works.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.
Feel free to open an issue for it.