Skip to content

Commit

Permalink
support python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasGensollen committed Dec 26, 2023
1 parent d5861ef commit 4b36aa8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest ]
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion hatch.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies = [
test = "pytest {args:src}"

[[envs.all.matrix]]
python = ["3.8", "3.9", "3.10", "3.11"]
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]

[envs.docs]
template = "docs"
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "pydra-brainstat"
version = "0.0.0"
description = "Pydra tasks for BrainStat"
readme = "README.md"
requires-python = ">=3.7"
requires-python = ">=3.8"
license = "Apache-2.0"
keywords = ["pydra", "neuroimaging", "brainstat"]
authors = [
Expand All @@ -19,11 +19,11 @@ classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
]
Expand All @@ -39,7 +39,7 @@ Issues = "https://github.com/aramis-lab/pydra-brainstat/issues"
Source = "https://github.com/aramis-lab/pydra-brainstat"

[tool.black]
target-version = ["py37"]
target-version = ["py311"]
line-length = 120

[tool.isort]
Expand All @@ -50,4 +50,4 @@ minversion = "6.0"
addopts = [
"--doctest-modules",
"--doctest-continue-on-failure",
]
]

0 comments on commit 4b36aa8

Please sign in to comment.