Update base CI version to 3.14 (from 3.10)#4512
Merged
Liam-DeVoe merged 34 commits intoHypothesisWorks:masterfrom Jan 13, 2026
Merged
Update base CI version to 3.14 (from 3.10)#4512Liam-DeVoe merged 34 commits intoHypothesisWorks:masterfrom
Liam-DeVoe merged 34 commits intoHypothesisWorks:masterfrom
Conversation
…without a blank line; unexpected unindent"
136185a to
caf6eba
Compare
Member
|
we've found a fair few cpython issues in other ways too 😅 |
This was referenced Jan 9, 2026
Liam-DeVoe
commented
Jan 9, 2026
Comment on lines
201
to
211
| "integer_array_indices(shape=(2, 3))", | ||
| "tuple[ndarray[tuple[int, ...], dtype[signedinteger[Any]]], ...]", | ||
| "tuple[ndarray[tuple[Any, ...], dtype[signedinteger[Any]]], ...]", | ||
| ), | ||
| ( | ||
| 'integer_array_indices(shape=(2, 3), dtype=np.dtype("int32"))', | ||
| "tuple[ndarray[tuple[int, ...], dtype[signedinteger[_32Bit]]], ...]", | ||
| "tuple[ndarray[tuple[Any, ...], dtype[signedinteger[_32Bit]]], ...]", | ||
| ), | ||
| ( | ||
| 'integer_array_indices(shape=(2, 3), dtype=np.dtype("uint8"))', | ||
| "tuple[ndarray[tuple[int, ...], dtype[unsignedinteger[_8Bit]]], ...]", | ||
| "tuple[ndarray[tuple[Any, ...], dtype[unsignedinteger[_8Bit]]], ...]", | ||
| ), |
Member
Author
There was a problem hiding this comment.
see numpy/numpy#29830, numpy loosened these types in 2.3
Member
Author
|
I ran into a transitive dependency issue specific to 3.13 that would have been a pain to work around, so I'm bumping everything to 3.14 instead |
Member
Author
Zac-HD
approved these changes
Jan 12, 2026
hypothesis-python/src/hypothesis/internal/conjecture/provider_conformance.py
Show resolved
Hide resolved
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.
I ran into a CPython bug while working on this: python/cpython#137841. That's now the second CPython bug our CI has found by running our test suite with weird command line flags! (The other one: python/cpython#137308).