chore(deps): combine and fix up dependabot bumps (black 26, mypy 2, pytest 9)#223
Merged
Merged
Conversation
…ytest 9) Combines dependabot PRs OpenJobDescription#218, OpenJobDescription#219, OpenJobDescription#222: - black 25.* -> 26.* (OpenJobDescription#218) - mypy 1.19.* -> 2.1.* (OpenJobDescription#219) - pytest 8.4.* -> 9.1.* (OpenJobDescription#222) black 26, mypy 2, and pytest 9 all dropped Python 3.9 (require >=3.10). Pinned via environment markers so the 3.9 CI job installs the last 3.9-compatible versions while 3.10+ gets the upgraded majors. Applied black 26 reformatting (docstring blank-line rule); verified black 25 agrees with the reformatted tree. Verified: ruff, black, mypy 2.1.0, and 289 unit tests pass. Signed-off-by: David Leong <116610336+leongdl@users.noreply.github.com>
godobyte
approved these changes
Jul 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Combining and fixing up the three failing dependabot PRs (#218, #219, #222) so they can be closed.
Changes (
requirements-testing.txt)25.*->26.*(chore(deps): update black requirement from ==25.* to ==26.* #218)1.19.*->2.1.*(chore(deps): update mypy requirement from ==1.19.* to ==2.1.* #219)8.4.*->9.1.*(chore(deps): update pytest requirement from ==8.4.* to ==9.1.* #222)Why the individual PRs were failing
black 26, mypy 2, and pytest 9 all dropped Python 3.9 (they now require
>=3.10), but this package supports>=3.9and tests 3.9 in CI — so pip couldn't install them on the 3.9 job.Fix: environment markers
Each tool is pinned per Python version so the 3.9 job installs the last 3.9-compatible release and 3.10+ gets the upgraded major:
Also applied black 26's docstring blank-line reformatting (5 files); verified black 25 agrees with the reformatted tree, so the 3.9
black --checkjob stays green.Verification
ruff check/black --check— passmypy(2.1.0) — no issues in 37 source fileshatch run test— 289 passed, 2 skippedCloses #218, closes #219, closes #222.