Skip to content

Commit

Permalink
Drop Python 3.8 EOL (2024-10)
Browse files Browse the repository at this point in the history
  • Loading branch information
asmacdo committed Sep 27, 2024
1 parent d5c4a3f commit 4e2aaa8
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 11 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ jobs:
fail-fast: false
matrix:
python:
- 3.8
#- 3.9
- 3.9
#- 3.10
#- 3.11
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.9

- name: Install build & twine
run: python -m pip install build twine
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ jobs:
- ubuntu-latest
- macos-latest
python:
- 3.8
- 3.9
- '3.10' # Needs quotes so YAML doesn't think it's 3.1
- '3.11'
Expand All @@ -41,13 +40,13 @@ jobs:
- normal
include:
- os: ubuntu-latest
python: 3.8
python: 3.9
mode: dandi-api
- os: ubuntu-latest
python: 3.8
python: 3.9
mode: dev-deps
- os: ubuntu-latest
python: 3.8
python: 3.9
mode: nfs

steps:
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
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ classifiers =
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Expand All @@ -28,7 +27,7 @@ project_urls =
Documentation = https://dandi.readthedocs.io

[options]
python_requires = >=3.8
python_requires = >=3.9
install_requires =
bidsschematools ~= 0.7.0
click >= 7.1
Expand Down

0 comments on commit 4e2aaa8

Please sign in to comment.