Skip to content

Commit 8ec8db5

Browse files
authored
Merge pull request #1504 from asmacdo/drop-3.8
Drop Python 3.8 EOL
2 parents 61e28e0 + fb076c8 commit 8ec8db5

File tree

7 files changed

+8
-11
lines changed

7 files changed

+8
-11
lines changed

.github/workflows/docs.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
python:
16-
- 3.8
17-
#- 3.9
16+
- 3.9
1817
#- 3.10
1918
#- 3.11
2019
steps:

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Python
1616
uses: actions/setup-python@v5
1717
with:
18-
python-version: '3.8'
18+
python-version: '3.9'
1919
- name: Install dependencies
2020
run: |
2121
python -m pip install --upgrade pip

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Python
2626
uses: actions/setup-python@v5
2727
with:
28-
python-version: 3.8
28+
python-version: 3.9
2929

3030
- name: Install build & twine
3131
run: python -m pip install build twine

.github/workflows/test.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ jobs:
3232
- ubuntu-latest
3333
- macos-latest
3434
python:
35-
- 3.8
3635
- 3.9
3736
- '3.10' # Needs quotes so YAML doesn't think it's 3.1
3837
- '3.11'
@@ -41,13 +40,13 @@ jobs:
4140
- normal
4241
include:
4342
- os: ubuntu-latest
44-
python: 3.8
43+
python: 3.9
4544
mode: dandi-api
4645
- os: ubuntu-latest
4746
python: 3.9
4847
mode: dev-deps
4948
- os: ubuntu-latest
50-
python: 3.8
49+
python: 3.9
5150
mode: nfs
5251

5352
steps:

.github/workflows/typing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: '3.8'
19+
python-version: '3.9'
2020

2121
- name: Install dependencies
2222
run: |

.readthedocs.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
build:
33
os: ubuntu-22.04
44
tools:
5-
python: "3.8"
5+
python: "3.9"
66
python:
77
install:
88
- requirements: docs/requirements.txt

setup.cfg

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ classifiers =
1212
License :: OSI Approved :: Apache Software License
1313
Operating System :: OS Independent
1414
Programming Language :: Python
15-
Programming Language :: Python :: 3.8
1615
Programming Language :: Python :: 3.9
1716
Programming Language :: Python :: 3.10
1817
Programming Language :: Python :: 3.11
@@ -28,7 +27,7 @@ project_urls =
2827
Documentation = https://dandi.readthedocs.io
2928

3029
[options]
31-
python_requires = >=3.8
30+
python_requires = >=3.9
3231
install_requires =
3332
bidsschematools ~= 0.7.0
3433
click >= 7.1

0 commit comments

Comments
 (0)