Skip to content

Commit a3d69d8

Browse files
committed
deprecate py3.8
1 parent 9642024 commit a3d69d8

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

.github/workflows/lint.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: |

.github/workflows/release.yml

+1-1
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

-1
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

+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: |

heudiconv/info.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,14 @@
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",
1817
"Topic :: Scientific/Engineering",
1918
"Typing :: Typed",
2019
]
2120

22-
PYTHON_REQUIRES = ">=3.8"
21+
PYTHON_REQUIRES = ">=3.9"
2322

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

0 commit comments

Comments
 (0)