Skip to content

Commit dd3f29f

Browse files
committed
bump Python versions used for CI (Python 3.8 is no longer supported)
1 parent b3d62e1 commit dd3f29f

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/build-dev.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.8", "3.12"]
15+
python-version: ["3.9", "3.13"]
1616
steps:
1717

1818
- name: Checkout Repository
@@ -40,10 +40,10 @@ jobs:
4040
ref: development
4141
path: development
4242
token: ${{ secrets.GITHUB_TOKEN }}
43-
if: ${{ matrix.python-version == 3.12 }}
43+
if: ${{ matrix.python-version == 3.13 }}
4444

4545
- name: Push to development
46-
if: ${{ matrix.python-version == 3.12 }}
46+
if: ${{ matrix.python-version == 3.13 }}
4747
run: |
4848
rsync -a --delete --exclude '.git/' --exclude 'img/' target/ development/
4949
cd development

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.8", "3.12"]
15+
python-version: ["3.9", "3.13"]
1616
steps:
1717

1818
- name: Checkout Repository
@@ -40,10 +40,10 @@ jobs:
4040
ref: main
4141
path: main
4242
token: ${{ secrets.GITHUB_TOKEN }}
43-
if: ${{ matrix.python-version == 3.12 }}
43+
if: ${{ matrix.python-version == 3.13 }}
4444

4545
- name: Push to main
46-
if: ${{ matrix.python-version == 3.12 }}
46+
if: ${{ matrix.python-version == 3.13 }}
4747
run: |
4848
rsync -a --delete --exclude '.git/' --exclude 'img/' target/ main/
4949
cd main

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
- name: Checkout Repository
1414
uses: actions/checkout@v4
1515

16-
- name: Set up Python 3.11
16+
- name: Set up Python 3.12
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: 3.11
19+
python-version: 3.12
2020

2121
- name: Run build
2222
run: |

pipeline/src/codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"programmingLanguage": ["Python"],
1919
"operatingSystem": ["Linux", "Windows", "macOS"],
2020
"softwareRequirements": [
21-
"Python (version >=3.8)"
21+
"Python (version >=3.9)"
2222
],
2323
"relatedLink": [
2424
"https://openminds-documentation.readthedocs.io"

pipeline/src/pyproject_template.toml.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
{ name="Peyman Najafi", email="[email protected]" },
1111
{ name="Raphaël Gazzotti" }
1212
]
13-
requires-python = ">=3.8"
13+
requires-python = ">=3.9"
1414
license = "MIT"
1515
classifiers = [
1616
"Development Status :: 4 - Beta",

0 commit comments

Comments
 (0)