Updated numpy and ORTOOLS deps#219
Open
nick-fournier wants to merge 7 commits into
Open
Conversation
Author
nick-fournier
marked this pull request as ready for review
July 9, 2026 23:23
nick-fournier
marked this pull request as draft
July 9, 2026 23:25
nick-fournier
marked this pull request as ready for review
July 9, 2026 23:25
There was a problem hiding this comment.
Pull request overview
Updates the project’s Python dependency floor/ceiling and dependency versions to support newer NumPy and OR-Tools, and adjusts packaging/CI configuration to match the updated Python ecosystem targets.
Changes:
- Bumped core dependencies (NumPy to 2.x, OR-Tools to 9.14.x) and expanded the supported Python range to include 3.13.
- Updated GitHub Actions CI to run tests on Python 3.10–3.13.
- Restricted setuptools package discovery to
populationsim*packages.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| pyproject.toml | Updates Python version constraints, bumps NumPy/OR-Tools dependencies, and narrows package discovery to populationsim*. |
| .github/workflows/python-package.yml | Updates the CI Python test matrix to include Python 3.13 and drop 3.9. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
18
to
+19
| matrix: | ||
| python-version: ["3.9", "3.10", "3.11", "3.12"] | ||
| python-version: ["3.10", "3.11", "3.12", "3.13"] |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
…im into deps/numpy_2.x
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.
Was able to update numpy pretty easily, just needed to update ORTOOLS along with it (which makes me wonder if that would fix the windows/unix divergence issue as well @JoeJimFlood), the only issue is that it failed a CLI test. Will dig into that. @jpn--