Skip to content
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
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ build-backend = 'setuptools.build_meta'

[project]
name = 'whippersnappy'
version = '2.0.0'
version = '2.1.0-dev'
description = 'A package to plot and capture FastSurfer and FreeSurfer-style surface overlays.'
readme = 'README.md'
license = {file = 'LICENSE'}
requires-python = '>=3.9'
license = 'MIT'
license-files = ['LICENSE']
requires-python = '>=3.10'
authors = [
{name = 'Martin Reuter', email = 'martin.reuter@dzne.de'},
]
Expand All @@ -31,7 +32,6 @@ classifiers = [
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
]
dependencies = [
Expand Down
5 changes: 3 additions & 2 deletions whippersnappy/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@
import platform
import re
import sys
from collections.abc import Callable
from functools import partial
from importlib.metadata import requires, version
from typing import IO, Callable, Optional
from typing import IO

import psutil


def sys_info(fid: Optional[IO] = None, developer: bool = False):
def sys_info(fid: IO | None = None, developer: bool = False):
"""Print the system information for debugging.

Parameters
Expand Down