Skip to content

Commit 9530a50

Browse files
committed
Revert "chore: upgrade Python version to 3.13"
This reverts commit 0c1afdc.
1 parent 0c1afdc commit 9530a50

File tree

4 files changed

+658
-658
lines changed

4 files changed

+658
-658
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
strategy:
2626
matrix:
27-
python-version: ["3.10", "3.11", "3.12", "3.13"]
27+
python-version: ["3.10", "3.11", "3.12"]
2828

2929
steps:
3030
- name: Checkout code
@@ -68,14 +68,14 @@ jobs:
6868
6969
- name: Upload coverage reports
7070
uses: actions/upload-artifact@v4
71-
if: matrix.python-version == '3.13' # Only upload once to avoid duplicates
71+
if: matrix.python-version == '3.12' # Only upload once to avoid duplicates
7272
with:
7373
name: coverage-report-${{ matrix.python-version }}
7474
path: htmlcov/
7575
retention-days: 30
7676

7777
- name: Display coverage summary
78-
if: matrix.python-version == '3.13' # Only show summary once
78+
if: matrix.python-version == '3.12' # Only show summary once
7979
run: |
8080
echo "## 📊 Coverage Report" >> $GITHUB_STEP_SUMMARY
8181
echo "" >> $GITHUB_STEP_SUMMARY

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.13
1+
3.12

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.13-alpine
1+
FROM python:3.12-alpine
22

33
# Install system dependencies
44
RUN apk add --no-cache curl

0 commit comments

Comments
 (0)