-
Notifications
You must be signed in to change notification settings - Fork 355
chore: add python 3.14 to CI matrix #917
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
chore: add python 3.14 to CI matrix #917
Conversation
|
Hi, I recall @alexanderankin had some concern regarding testing too many versions, #871 (review) |
Hi, Then it would be most logical to abandon the official support for python 3.9 |
|
thinking about: diff --git a/.github/workflows/ci-community.yml b/.github/workflows/ci-community.yml
index cd17794..44cb95d 100644
--- a/.github/workflows/ci-community.yml
+++ b/.github/workflows/ci-community.yml
@@ -44,7 +44,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- python-version: ["3.9", "3.13", "3.14"]
+ python-version: ["3.10", "3.13", "3.14"]
module: ${{ fromJSON(needs.track-modules.outputs.changed_modules) }}
steps:
- name: Checkout contents
diff --git a/.github/workflows/ci-core.yml b/.github/workflows/ci-core.yml
index b312dbe..f7d9c3e 100644
--- a/.github/workflows/ci-core.yml
+++ b/.github/workflows/ci-core.yml
@@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- python-version: ["3.9", "3.13", "3.14"]
+ python-version: ["3.10", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #917 +/- ##
==========================================
- Coverage 79.78% 79.52% -0.26%
==========================================
Files 14 14
Lines 1182 1182
Branches 184 184
==========================================
- Hits 943 940 -3
- Misses 197 201 +4
+ Partials 42 41 -1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Added:
Changed:
Removed:
Closed #916