Fix CI workflow by dropping Python 3.8 support#15
Conversation
The project depends on `numpy>=2.0.0`, which requires Python 3.9+. This commit removes Python 3.8 from the CI matrix, updates documentation, and adjusts package metadata to require Python 3.9+. Changes: - .github/workflows/ci.yml: Remove 3.8 from matrix. - README.md: Update Python version badge and requirements text. - requirements.txt: Update header comment. - setup.py: Update python_requires to >=3.9, update classifiers and fallback requirements. - docs/API.md: Update Python version requirement. - docs/DEPLOYMENT.md: Update Python version requirement. Co-authored-by: dfeen87 <158860247+dfeen87@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
The CI workflow was failing for Python 3.8 because
numpy>=2.0.0(required by the project) supports only Python 3.9+.This PR drops support for Python 3.8 to align with the dependencies.
It updates the CI configuration,
README.md,requirements.txt,setup.py, and documentation files to reflect the new requirement of Python 3.9+.Tests passed locally.
PR created automatically by Jules for task 12682188911228318501 started by @dfeen87