Skip to content

Commit

Permalink
[MAINT] drop python 3.8 (#99)
Browse files Browse the repository at this point in the history
* drop py3.8

* Update .github/workflows/pypi-publish.yml
  • Loading branch information
Remi-Gau authored Oct 22, 2024
1 parent 2ca517e commit 5b7cce0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.12']
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} with Python ${{ matrix.python-version }}
defaults:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing_cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.11']
python-version: ['3.12']
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} with Python ${{ matrix.python-version }}
defaults:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ license = {file = "LICENSE"}
maintainers = [{name = "PyBIDS Developers", email = "[email protected]"}]
name = "pybids_reports"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"

[project.optional-dependencies]
ci_tests = [
Expand Down Expand Up @@ -87,7 +87,7 @@ exclude = '''
'''
include = '\.pyi?$'
line-length = 99
target-version = ['py38']
target-version = ['py39']

[tool.codespell]
ignore-words-list = "te"
Expand Down

0 comments on commit 5b7cce0

Please sign in to comment.