Skip to content

Commit

Permalink
chore!: drop support and testing for EOLed Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
yarikoptic committed Oct 31, 2024
1 parent 2eb5291 commit d121ae1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.9'

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
if: steps.auto-version.outputs.version != ''
uses: actions/setup-python@v5
with:
python-version: '^3.8'
python-version: '^3.9'

- name: Install Python dependencies
if: steps.auto-version.outputs.version != ''
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.9'

- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions heudiconv/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]

PYTHON_REQUIRES = ">=3.8"
PYTHON_REQUIRES = ">=3.9"

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

0 comments on commit d121ae1

Please sign in to comment.