Bump numpy to enable installation on Python 3.13+#168
Draft
Copilot wants to merge 2 commits into
Draft
Conversation
Copilot
AI
changed the title
[WIP] Ensure microbots installation supports Python 3.13 and above
Bump numpy to enable installation on Python 3.13+
Jun 22, 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.
On Python 3.13 (e.g. Fedora 42's default interpreter),
pip install microbotsfails while building numpy from source. The pinnednumpy==1.26.4predates 3.13 and ships nocp313wheels, so pip falls back to a Meson source build that fails on many machines.Changes
requirements.txt— bumpnumpy==1.26.4→numpy==2.2.6, the only pinned dependency lacking Python 3.13 wheels. The remaining pins already providecp313wheels, so the full set now resolves wheel-only on 3.11–3.13.pyproject.toml— addProgramming Language :: Python :: 3.12and:: 3.13trove classifiers to advertise supported versions (alongside existingrequires-python = ">=3.11").docs/getting-started/prerequisites.md— replace the "3.10 or later, but below 3.13" guidance and the "fix in progress" note with "Python 3.11 or later (3.13 supported)".Notes for reviewers
numpy 2.2.6covers Python 3.10–3.13; no source code imports numpy directly (purely transitive viadatasets/pandas/pyarrow), so the major bump is install-surface only.requirements.txtinstalls with--only-binary=:all:(no source builds), andmicrobotsbuilds, installs, and imports cleanly.Original prompt
Created from VS Code.