Skip to content

Commit f748e48

Browse files
authored
Merge pull request #90 from ResearchObject/bump_python_version
Bump min Python version to 3.9
2 parents 44c831f + d5b1cff commit f748e48

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
platform: ['ubuntu-latest', 'macos-latest']
15-
python-version: ['3.8', '3.9', '3.10']
15+
python-version: ['3.9', '3.10', '3.11', '3.12']
1616
runs-on: ${{ matrix.platform }}
1717
steps:
1818
- uses: actions/checkout@v4
@@ -41,10 +41,10 @@ jobs:
4141
runs-on: ubuntu-latest
4242
steps:
4343
- uses: actions/checkout@v4
44-
- name: Set up Python 3.8
44+
- name: Set up Python 3.12
4545
uses: actions/setup-python@v5
4646
with:
47-
python-version: '3.8'
47+
python-version: '3.12'
4848
- name: Install dependencies
4949
run: |
5050
python -m pip install --upgrade pip setuptools wheel

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
steps:
1212
- name: checkout code
1313
uses: actions/checkout@v4
14-
- name: Set up Python 3.8
14+
- name: Set up Python 3.12
1515
uses: actions/setup-python@v5
1616
with:
17-
python-version: '3.8'
17+
python-version: '3.12'
1818
- name: Install dependencies
1919
run: |
2020
python -m pip install --upgrade pip setuptools wheel

.github/workflows/release.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: actions/setup-python@v5
1616
with:
17-
python-version: '3.10'
17+
python-version: '3.12'
1818
- name: Build
1919
run: |
2020
pip install wheel

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ classifiers = [
1313
"Intended Audience :: Science/Research",
1414
"Operating System :: MacOS :: MacOS X",
1515
"Operating System :: POSIX :: Linux",
16-
"Programming Language :: Python :: 3.8",
1716
"Programming Language :: Python :: 3.9",
1817
"Programming Language :: Python :: 3.10",
18+
"Programming Language :: Python :: 3.12",
1919
]
2020
authors = [{name = "CRS4", email = "[email protected]"}, {name = "RO-Crate community"}]
21-
requires-python = ">=3.8, <4"
21+
requires-python = ">=3.9, <4"
2222
dependencies = [
2323
"bdbag>=1.4.1",
2424
"click~=8.1",

0 commit comments

Comments
 (0)