microbots python 3.13 installation issue fix#169
Open
shivashanmugam wants to merge 5 commits into
Open
Conversation
…issue # Conflicts: # .github/workflows/test.yml
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #169 +/- ##
==========================================
+ Coverage 65.28% 65.32% +0.04%
==========================================
Files 34 34
Lines 2394 2394
==========================================
+ Hits 1563 1564 +1
+ Misses 831 830 -1
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
This reverts commit 61c899f.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates Microbots’ pinned dependency set to avoid Python 3.13 install failures (notably around NumPy) and adds CI coverage to confirm the package can be installed and imported across Python 3.11–3.14.
Changes:
- Update pinned dependency versions and add Python-version markers for NumPy to ensure wheels are available on 3.13/3.14.
- Advertise support for Python 3.12–3.14 via trove classifiers.
- Add a GitHub Actions job intended to verify install + import on Python 3.11–3.14.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
requirements.txt |
Updates pins and adds conditional NumPy pins to avoid source builds on newer Python versions. |
pyproject.toml |
Adds Python 3.12–3.14 classifiers (package metadata). |
.github/workflows/test.yml |
Adds an install-check matrix job to validate install/import across Python versions. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Properly mimics real user system installation Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
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.
Fixes : #137
Python 3.13 — ✅ verified
In a fresh CPython 3.13.7 venv. It installed all dependencies (numpy 2.2.6 selected via marker) and import microbots succeeded.
Python 3.14 — ✅ verified
Install: resolves cleanly (numpy 2.5.0 selected via marker) — verified on real 3.14.
Created Tests to verify microbots installation on

3.11, 3.12, 3.13, 3.14