Skip to content

chore(deps): Update eth-account requirement from >=0.10.0 to >=0.13.7 in /money-machine/src-python#76

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/money-machine/src-python/eth-account-gte-0.13.7
Open

chore(deps): Update eth-account requirement from >=0.10.0 to >=0.13.7 in /money-machine/src-python#76
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/money-machine/src-python/eth-account-gte-0.13.7

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 18, 2026

Updates the requirements on eth-account to permit the latest version.

Changelog

Sourced from eth-account's changelog.

eth-account v0.13.7 (2025-04-21)

Bugfixes


- Fix issues with the json schema generation for Pydantic models (``SignedSetCodeAuthorization``) and simplify the serialization by moving a misplaced ``@field_validator`` decorator above ``@classmethod`` (not below it). (`[#318](https://github.com/ethereum/eth-account/issues/318) <https://github.com/ethereum/eth-account/issues/318>`__)
- Remove doc warnings and unwanted generated docs (`[#321](https://github.com/ethereum/eth-account/issues/321) <https://github.com/ethereum/eth-account/issues/321>`__)

Improved Documentation

  • Update and clarify documentation for authorization signing. ([#319](https://github.com/ethereum/eth-account/issues/319) <https://github.com/ethereum/eth-account/issues/319>__)

eth-account v0.13.6 (2025-03-26)

Bugfixes


- Adds logic to interpret the string values ``"False"``, ``"false"``, and ``"0"`` as ``False`` when encoding EIP712 messages. (`[#303](https://github.com/ethereum/eth-account/issues/303) <https://github.com/ethereum/eth-account/issues/303>`__)

Features

  • Implement EIP-7702 SetCodeTransaction. ([#315](https://github.com/ethereum/eth-account/issues/315) <https://github.com/ethereum/eth-account/issues/315>__)

eth-account v0.13.5 (2025-02-04)

Features


- Make ``sign_typed_data`` available in the ``LocalAccount`` class. (`[#304](https://github.com/ethereum/eth-account/issues/304) <https://github.com/ethereum/eth-account/issues/304>`__)
- Merge template, adding py313 support, replacing ``bumpversion`` with ``bump-my-version`` and bumping ``hypothesis`` test dep to ``>=6.22.0,<6.108.7``. (`[#311](https://github.com/ethereum/eth-account/issues/311) <https://github.com/ethereum/eth-account/issues/311>`__)

Internal Changes - for eth-account Contributors

  • deepcopy EIP712 messages used in test to avoid unintended mutation. ([#308](https://github.com/ethereum/eth-account/issues/308) <https://github.com/ethereum/eth-account/issues/308>__)
  • Update node.js version used in tests from 20 to 22. ([#309](https://github.com/ethereum/eth-account/issues/309) <https://github.com/ethereum/eth-account/issues/309>__)

eth-account v0.13.4 (2024-09-25)

... (truncated)

Commits
  • c8b54e6 Bump version: 0.13.6 → 0.13.7
  • 0122cc2 Compile release notes for v0.13.7
  • f1e2527 Remove unwanted autogenerated docs (#321)
  • a1ba20c clarify auth signing docs; nonce + 1 & data
  • a05941b changes from comments on PR #318:
  • 66097fb Some refactoring for pydantic models:
  • 33aa0fc Bump version: 0.13.5 → 0.13.6
  • 719dff5 Compile release notes for v0.13.6
  • 538a905 Make mnemonic tests more robust and explicit
  • c692991 Changes from comments on PR #316
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

**Disclaimer This is AxiomID Review Agent.

Greptile Summary

This Dependabot PR bumps the eth-account lower bound from >=0.10.0 to >=0.13.7 in the Python trading engine's requirements. The consuming adapter (engine/adapters/evm.py) already anticipates the 0.13+ API shape — it conditionally reads raw_transaction with a fallback to rawTransaction — so no runtime breakage is introduced by this change.

  • The eth-account version range spans three minor releases (0.10 → 0.13), picking up EIP-7702 SetCodeTransaction support, sign_typed_data on LocalAccount, Python 3.13 compatibility, and several EIP-712 encoding bugfixes.
  • With >=0.13.7 now enforced, the rawTransaction compatibility shim in _sign_tx (line 546 of evm.py) is dead code and can be removed.

Confidence Score: 5/5

Safe to merge — the one changed file is a requirements pin, and the adapter code already handles the updated API shape correctly.

The only file changed is requirements.txt. The adapter that consumes eth-account was already written to handle the 0.13+ raw_transaction attribute, so the version bump does not introduce any new failure path in production code. The sole finding is an opportunity to remove now-unreachable compatibility code.

No files require special attention, though engine/adapters/evm.py has a minor dead-code opportunity now that the 0.13+ minimum is enforced.

Important Files Changed

Filename Overview
money-machine/src-python/requirements.txt Bumps eth-account minimum from >=0.10.0 to >=0.13.7; the consuming adapter already handles the 0.13+ API shape (raw_transaction attribute), so no compatibility issues in the changed files.

Reviews (1): Last reviewed commit: "chore(deps): Update eth-account requirem..." | Re-trigger Greptile

Updates the requirements on [eth-account](https://github.com/ethereum/eth-account) to permit the latest version.
- [Changelog](https://github.com/ApeWorX/eth-account/blob/main/docs/release_notes.rst)
- [Commits](ApeWorX/eth-account@v0.10.0...v0.13.7)

---
updated-dependencies:
- dependency-name: eth-account
  dependency-version: 0.13.7
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 18, 2026

Labels

The following labels could not be found: dependencies, trading-runtime. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 18, 2026

Warning

Rate limit exceeded

@dependabot[bot] has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 5 minutes and 14 seconds before requesting another review.

You’ve run out of usage credits. Purchase more in the billing tab.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 7a65cdac-1552-4561-9218-b6968e2ebecb

📥 Commits

Reviewing files that changed from the base of the PR and between aa69cc0 and 25f835d.

📒 Files selected for processing (1)
  • money-machine/src-python/requirements.txt
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch dependabot/pip/money-machine/src-python/eth-account-gte-0.13.7

Comment @coderabbitai help to get the list of available commands and usage tips.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants