Prepare 26.4.0 release - #1527
Merged
Merged
Conversation
Raises the maximum supported cryptography version to 50.x and bumps the version to 26.4.0. Fixes #1525 Closes #1526 Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Vb6YjYEyUrAMT2UAQtaUHp
reaperhulk
approved these changes
Aug 1, 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.
Raises the maximum supported
cryptographyversion to 50.x and bumps the version to 26.4.0.Fixes #1525
Closes #1526 (identical
setup.pychange, wrapped in a release)Changes
setup.py:cryptography>=49.0.0,<50→cryptography>=49.0.0,<51CHANGELOG.rst: new26.4.0 (2026-08-01)section noting the new maximumsrc/OpenSSL/version.py:26.3.0→26.4.0The minimum stays at 49.0.0, so
noxfile.py'sMINIMUM_CRYPTOGRAPHY_VERSIONis unchanged.Verification
Locally against cryptography 50.0.0 (OpenSSL 4.0.1) and, as a control, against the 49.0.0 minimum:
TestContext::test_fallback_default_verify_paths, reproduces identically on cryptography 49 — it needs system CA certs at OpenSSL's default path, which this sandbox lacks. Not a cryptography 50 regression.mypy src/ tests/(strict): clean on cryptography 50.ruff check/ruff format --check/check-manifest: clean.python -m OpenSSL.debugreports pyOpenSSL 26.4.0 / cryptography 50.0.0. Wheel metadata declaresRequires-Dist: cryptography<51,>=49.0.0.One unrelated observation, left alone since it predates this change:
setup.py'slong_descriptionregex terminates on the first literal----line, which now lives at CHANGELOG.rst:499, so the PyPI "Release Information" section carries every release back to that point rather than just the newest.Generated by Claude Code