Modernize Python codebase for 2025+#16
Merged
MattShannon merged 2 commits intomasterfrom Mar 15, 2026
Merged
Conversation
- Replace Travis CI and AppVeyor with GitHub Actions (Linux + Windows, Python 3.9-3.13) - Fix NumPy 2.x compatibility: use cnp.intp_t for index arrays in misc.pyx, explicit dtype=np.intp in tests - Fix Python 3.12+: assertRaisesRegexp -> assertRaisesRegex - Fix modern scipy: sym_pos=True -> assume_a='pos' - Bump minimum deps to numpy>=1.26.0, scipy>=1.12.0 - Simplify build: remove dev file dual-mode mechanism, always use Cython (now guaranteed available via pyproject.toml) - Update README: modernize install/dev instructions, remove darcs references, update CI badge - Remove boring.darcs and old CI configs https://claude.ai/code/session_017xmjvL47SYtX11EZjQ2uSJ
bf60c7d to
9de6b08
Compare
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.
Summary
pyproject.tomldeclaring build-system dependencies (from PR Add pyproject.toml for Numpy and Cython build dependencies #13 by @altendky)cnp.intp_tfor index arrays,assertRaisesRegex,assume_a='pos'devfile dual-mode mechanism (Cython now always available via pyproject.toml)boring.darcsand old CI configs