Skip to content

Commit

Permalink
[ENH] drop python 3.8 and support 313 (#74)
Browse files Browse the repository at this point in the history
* support 3.13

* update pyupgrade
  • Loading branch information
Remi-Gau authored Oct 8, 2024
1 parent 4b9aceb commit 39469a1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Test

on:
push:
branches: [master]
branches: [main]
pull_request:
branches: ['*']

Expand All @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
fail-fast: false
steps:
- name: Clone repo
Expand All @@ -26,6 +26,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install dependencies
run: pip install tox
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ repos:
rev: v3.17.0
hooks:
- id: pyupgrade
args: [--py38-plus]
args: [--py39-plus]

- repo: https://github.com/psf/black-pre-commit-mirror
rev: 24.10.0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ license = {text = "MIT"}
maintainers = [{name = "Camille Maumet", email = "[email protected]"}]
name = "nidmresults"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"

[project.optional-dependencies]
# A combination of dependencies useful for developers
Expand Down

0 comments on commit 39469a1

Please sign in to comment.