Skip to content

Commit 06850ae

Browse files
committed
update ci about update python versions
1 parent 8c9f3ac commit 06850ae

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
fail-fast: true
7474
matrix:
7575
os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
76-
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
76+
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
7777
runs-on: ${{ matrix.os }}
7878

7979
steps:

src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
fail-fast: true
7474
matrix:
7575
os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
76-
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
76+
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
7777
runs-on: ${{ matrix.os }}
7878

7979
steps:

src/fair_python_cookiecutter/template/{{ cookiecutter.project_slug }}/.gitlab-ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,6 @@ test-docs-build:
9595
junit: report.xml # for Gitlab integration of test results
9696

9797
# Run tests, using different Python versions:
98-
run-pytest-3.8:
99-
image: python:3.8
100-
<<: *run-pytest
10198
run-pytest-3.9:
10299
image: python:3.9
103100
<<: *run-pytest
@@ -107,6 +104,12 @@ run-pytest-3.10:
107104
run-pytest-3.11:
108105
image: python:3.11
109106
<<: *run-pytest
107+
run-pytest-3.12:
108+
image: python:3.12
109+
<<: *run-pytest
110+
run-pytest-3.13:
111+
image: python:3.13
112+
<<: *run-pytest
110113

111114
# ----
112115

0 commit comments

Comments
 (0)