-
Notifications
You must be signed in to change notification settings - Fork 26
chore(deps): update minor and patch updates #591
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,13 +28,13 @@ dev = [ | |
| { include-group = "nox" }, | ||
| ] | ||
| test = [ | ||
| "pytest==8.3.4", | ||
| "pytest-asyncio==0.23.8", | ||
| "pytest==8.4.2", | ||
| "pytest-asyncio==0.26.0", | ||
| "pytest-cov==5.0.0", | ||
| "six==1.17.0", | ||
| ] | ||
| lint = ["ruff==0.14.5"] | ||
| type_check = ["mypy==1.14.1"] | ||
| lint = ["ruff==0.15.6"] | ||
| type_check = ["mypy==1.19.1"] | ||
| nox = [ | ||
| "nox>=2024.10.9 ; python_version >= '3.9'", | ||
| "nox-uv>=0.7.0 ; python_version >= '3.9'", | ||
|
|
@@ -64,5 +64,5 @@ source-include = ["py.typed"] | |
| source-exclude = ["tests*"] | ||
|
|
||
| [build-system] | ||
| requires = ["uv_build>=0.8.15,<0.9.0"] | ||
| requires = ["uv_build>=0.10.10,<0.11.0"] | ||
|
Contributor
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.
The lockfile still references the old dependency versions (pytest 8.3.4, pytest-asyncio 0.23.8, mypy 1.14.1, ruff 0.14.5). The CI workflow runs |
||
| build-backend = "uv_build" | ||
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.
pytest 8.4 dropped Python 3.8 support
pytest 8.4.0 removed support for Python 3.8. This project still declares
requires-python = ">=3.8"and the CI matrix inci.ymlincludes Python 3.8. This upgrade will break the Python 3.8 CI job.Similarly,
pytest-asyncio==0.26.0has a minimum pytest version of 8.2.0, so this combination will also not work on Python 3.8 where pytest 8.4 cannot be installed.Either pin these dev dependencies to versions that still support Python 3.8 (e.g.,
pytest<8.4), or drop Python 3.8 from the project's supported versions and CI matrix.