Skip to content

Commit 4508c28

Browse files
clean up python versions/workflows
1 parent 9ee27fd commit 4508c28

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci-community.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contrinuous Integration for community modules
1+
# Continuous Integration for community modules
22

33
name: modules
44

@@ -44,7 +44,7 @@ jobs:
4444
strategy:
4545
fail-fast: false
4646
matrix:
47-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
47+
python-version: ["3.9", "3.13", "3.14"]
4848
module: ${{ fromJSON(needs.track-modules.outputs.changed_modules) }}
4949
steps:
5050
- name: Checkout contents

.github/workflows/ci-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: ["3.9", "3.11", "3.12", "3.13", "3.14"]
17+
python-version: ["3.9", "3.13", "3.14"]
1818
steps:
1919
- uses: actions/checkout@v4
2020
- name: Set up Python

.github/workflows/ci-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contrinuous Integration for the core package
1+
# Continuous Integration for the core package
22

33
name: lint
44

@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup Env
1717
uses: ./.github/actions/setup-env
1818
with:
19-
python-version: "3.9" # the pre-commit is hooked in as 3.9
19+
python-version: "3.13"
2020
- name: Install Python dependencies
2121
run: poetry install --no-interaction
2222
- name: Execute pre-commit handler

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Python
1515
uses: ./.github/actions/setup-env
1616
with:
17-
python-version: "3.11"
17+
python-version: "3.13"
1818
- name: Install Python dependencies
1919
run: poetry install --all-extras
2020
- name: Build documentation

0 commit comments

Comments
 (0)