Skip to content

Commit

Permalink
Merge pull request #1504 from asmacdo/drop-3.8
Browse files Browse the repository at this point in the history
Drop Python 3.8 EOL
  • Loading branch information
yarikoptic authored Oct 14, 2024
2 parents 61e28e0 + fb076c8 commit 8ec8db5
Show file tree
Hide file tree
Showing 7 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
5 changes: 2 additions & 3 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.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
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.8"
python: "3.9"
python:
install:
- requirements: docs/requirements.txt
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 8ec8db5

Please sign in to comment.