Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MAINT] Drop python 3.8 and support 3.13 #646

Merged
merged 3 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.12', '3.11', '3.10', '3.9', '3.8']
python-version: ['3.13', '3.12', '3.11', '3.10', '3.9']
fail-fast: false
steps:
- name: Install Apptainer
Expand All @@ -36,6 +36,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install neurodocker
run: python -m pip install --editable .[dev]
- name: Run python tests
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/type_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

strategy:
matrix:
python-version: ['3.12', '3.11', '3.10', '3.9', '3.8']
python-version: ['3.13', '3.12', '3.11', '3.10', '3.9']

steps:
- uses: actions/checkout@v4
Expand All @@ -28,6 +28,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true

- name: Install neurodocker
run: python -m pip install . mypy
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules"
]
Expand All @@ -36,7 +36,7 @@ license = {text = "Apache License, 2.0"}
maintainers = [{name = "Jakub Kaczmarzyk", email = "[email protected]"}]
name = "neurodocker"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"

[project.optional-dependencies]
all = ["neurodocker[minify,dev,doc]"]
Expand Down Expand Up @@ -68,7 +68,7 @@ Homepage = "https://www.repronim.org/neurodocker/"

[tool.black]
line-length = 88
target-version = ['py38']
target-version = ['py39']

[tool.codespell]
# didi -- some name Dear to someone
Expand Down
Loading