Loosen eth-account
, eth-utils
and eth-typing
dependencies.
#70
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.
Issue
I'm trying to use the latest
siwe-py
library which has a fix I need in a newer version (>v2.4.1) but has the following dependencies (https://github.com/spruceid/siwe-py/blob/v4.1.0/pyproject.toml):However, I'm also using
eth-ape
for testing, which has the following dependencies:and therefore I now have conflicting dependencies with
eth-typing
andeth-utils
becauseeth-ape
wants versions <4, <3 respectively, butsiwe-py
wants versions 4.x.(Issue #71 )
Resolution
Since the
siwe-py
library is so light, it was unclear to me the need for such a strict restriction oneth-utils
andeth-typing
, so I modified the pyproject.toml.The tests for the library pass and I've tested using the update code as a github dependency and all works well, at least for the
nucypher/nucypher
library 😊 .I'm hoping this can be included in a release relatively quickly.
Fixes #71 .