-
-
Notifications
You must be signed in to change notification settings - Fork 32
⬆️ update Python support to include version 3.13 and remove 3.8 #94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
WalkthroughThis pull request updates several configuration files to replace Python 3.8 with Python 3.13. The changes affect the GitHub Actions workflow used for testing, the project’s Python version requirements in both the pyproject and tox configuration files, and the supported Python versions listed in the CONTRIBUTING document. Additionally, adjustments to database configuration flags were made in the workflow, and the LICENSE file has been updated with the new copyright year. Changes
Sequence Diagram(s)sequenceDiagram
participant Dev as Developer
participant Repo as GitHub Repository
participant CI as CI Workflow
participant Env as Testing Environment
Dev->>Repo: Push commit with updated configurations
Repo->>CI: Trigger workflow
CI->>Env: Execute tests using Python 3.13 & updated DB settings
Env-->>CI: Return test results
CI-->>Repo: Update build status
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (5)
⏰ Context from checks skipped due to timeout of 90000ms (21)
🔇 Additional comments (9)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #94 +/- ##
=======================================
Coverage 85.85% 85.85%
=======================================
Files 8 8
Lines 629 629
=======================================
Hits 540 540
Misses 89 89 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This pull request includes several updates to the project configuration files to drop support for Python 3.8 and add support for Python 3.13. The changes affect multiple files, including the GitHub workflows, project metadata, and testing configurations.
Key changes include:
GitHub Workflows:
.github/workflows/test.yml
to remove Python 3.8 configurations and add Python 3.13 configurations across various database versions. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16]Documentation:
CONTRIBUTING.md
to reflect the supported Python versions, removing Python 3.8 and adding Python 3.13.Licensing:
LICENSE
file to change the copyright year from 2024 to 2025.Project Metadata:
pyproject.toml
to change the required Python version to 3.9 or higher and added Python 3.13 to classifiers and target versions. [1] [2] [3] [4]Testing Configuration:
tox.ini
to remove Python 3.8 and add Python 3.13 to the testing environments.