Skip to content

Commit

Permalink
fix: python 3.9 is unsupported
Browse files Browse the repository at this point in the history
due to dataclass kw_only argument only introduced in 3.10
  • Loading branch information
paquiteau committed Oct 17, 2024
1 parent 0b8c621 commit 0d59755
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
test:
strategy:
matrix:
python: ['3.9', '3.10' , '3.11', '3.12']
python: ['3.10' , '3.11', '3.12']
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "A simulator and validator of fMRI reconstruction methods."
# This field corresponds to the "Description" metadata field:
readme = "README.md" # Optional

requires-python = ">=3.9"
requires-python = ">=3.10"
dynamic = ["version"]

license = {file = "LICENSE.txt"}
Expand Down

0 comments on commit 0d59755

Please sign in to comment.