Skip to content
Closed
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ web3 = ">=5.27,!=5.29.*,!=5.30.*,!=5.31.1,!=5.31.2,<8"

[tool.poetry.group.dev.dependencies]
eth-brownie = "1.22.0.dev2"
pytest = "6.2.5"
pytest = "9.0.2"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep pytest compatible with py39 test matrix

Pytest 9 drops Python 3.9 support; this repo still runs 3.9 in tox.ini (env_list includes py39) and the release workflow uses Python 3.9. With pytest = "9.0.2", any 3.9 test/build environment will fail to resolve/install pytest before tests run. If 3.9 is still a supported target, keep pytest <9 for those environments or remove 3.9 from the tox/workflow matrices.

Useful? React with 👍 / 👎.

pytest-asyncio-cooperative = "0.40.0"
pytest-cov = "6.3.0"
pytest-sugar = "1.1.1"
Expand Down
Loading