Skip to content

Commit fc06b8c

Browse files
authored
Merge pull request #801 from nipy/py3.9
chore!: drop support and testing for EOLed Python 3.8
2 parents 2eb5291 + d121ae1 commit fc06b8c

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
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: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
if: steps.auto-version.outputs.version != ''
4141
uses: actions/setup-python@v5
4242
with:
43-
python-version: '^3.8'
43+
python-version: '^3.9'
4444

4545
- name: Install Python dependencies
4646
if: steps.auto-version.outputs.version != ''

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
python-version:
20-
- '3.8'
2120
- '3.9'
2221
- '3.10'
2322
- '3.11'

.github/workflows/typing.yml

Lines changed: 1 addition & 1 deletion
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: |

heudiconv/info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
"Environment :: Console",
1212
"Intended Audience :: Science/Research",
1313
"License :: OSI Approved :: Apache Software License",
14-
"Programming Language :: Python :: 3.8",
1514
"Programming Language :: Python :: 3.9",
1615
"Programming Language :: Python :: 3.10",
1716
"Programming Language :: Python :: 3.11",
17+
"Programming Language :: Python :: 3.12",
1818
"Topic :: Scientific/Engineering",
1919
"Typing :: Typed",
2020
]
2121

22-
PYTHON_REQUIRES = ">=3.8"
22+
PYTHON_REQUIRES = ">=3.9"
2323

2424
REQUIRES = [
2525
# not usable in some use cases since might be just a downloader, not binary

0 commit comments

Comments
 (0)