Skip to content

chore: soften package requirements for compatibility with other dependences #510

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

Merged
merged 3 commits into from
Apr 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: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Test fixtures for use by clients are available for each release on the [Github r
- πŸ’₯ As part of the pydantic conversion, the fixtures have the following (possibly breaking) changes ([#486](https://github.com/ethereum/execution-spec-tests/pull/486)):
- State test field `transaction` now uses the proper zero-padded hex number format for fields `maxPriorityFeePerGas`, `maxFeePerGas`, and `maxFeePerBlobGas`
- Fixtures' hashes (in the `_info` field) are now calculated by removing the "_info" field entirely instead of it being set to an empty dict.
- 🐞 Relax minor and patch dependency requirements to avoid conflicting package dependencies ([#510](https://github.com/ethereum/execution-spec-tests/pull/510)).

### πŸ’₯ Breaking Change

Expand Down
12 changes: 6 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ install_requires =
ethereum@git+https://github.com/ethereum/execution-specs.git
setuptools
types-setuptools
requests>=2.31.0
colorlog>=6.7.0
pytest==7.3.2
requests>=2.31.0,<3
colorlog>=6.7.0,<7
pytest>7.3.2,<8
pytest-xdist>=3.3.1,<4
coincurve>=18.0.0,<19
trie==2.1.1
semver==3.0.1
trie>=2.0.2,<3
semver>=3.0.1,<4
click>=8.0.0,<9
pydantic>=2.6.3
pydantic>=2.6.3,<3
rich>=13.7.0,<14

[options.package_data]
Expand Down