Description
While reading the contributor guide, I found two documentation issues in CONTRIBUTING.md:
- The
pipx prerequisite links to the Poetry website instead of pipx documentation.
- The PR review section says CI runs on Python 3.10 with NumPy 1.26.4, but the current GitHub Actions test matrix runs Python 3.10, 3.11, and 3.12 with NumPy 2.0.2 and the latest allowed
<2.1.
Evidence
CONTRIBUTING.md prerequisite link: line with - [pipx](https://python-poetry.org/) for installing Python tools
CONTRIBUTING.md "Review process" section: CI statement near the end of the file CI tests must pass (pytest on Python 3.10 with NumPy 1.26.4).
.github/workflows/tests.yml: matrix shows Python 3.10, 3.11, 3.12, and NumPy 2.0.2 / <2.1.
Expected behavior
The contributor guide should link to the correct pipx docs and accurately describe the current CI matrix.
Why this matters
This is contributor-facing documentation. Incorrect setup links and stale CI information make onboarding harder and can cause confusion about the supported development environment.
I’d be happy to open a PR to fix this if it sounds useful.
Description
While reading the contributor guide, I found two documentation issues in
CONTRIBUTING.md:pipxprerequisite links to the Poetry website instead of pipx documentation.<2.1.Evidence
CONTRIBUTING.mdprerequisite link: line with- [pipx](https://python-poetry.org/) for installing Python toolsCONTRIBUTING.md"Review process" section: CI statement near the end of the fileCI tests must pass (pytest on Python 3.10 with NumPy 1.26.4)..github/workflows/tests.yml: matrix shows Python 3.10, 3.11, 3.12, and NumPy 2.0.2 /<2.1.Expected behavior
The contributor guide should link to the correct pipx docs and accurately describe the current CI matrix.
Why this matters
This is contributor-facing documentation. Incorrect setup links and stale CI information make onboarding harder and can cause confusion about the supported development environment.
I’d be happy to open a PR to fix this if it sounds useful.