diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1c55b33..aebed14 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,10 +29,12 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.11", "3.12", "3.13"] include: - os: ubuntu-latest python-version: "3.8" + - os: macos-latest + python-version: "3.10" test-minreqs: uses: pyapp-kit/workflows/.github/workflows/test-pyrepo.yml@main diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a36962b..57953f2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,7 +12,7 @@ repos: - id: validate-pyproject - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.6.4 + rev: v0.6.7 hooks: - id: ruff args: [--fix, --unsafe-fixes] diff --git a/pyproject.toml b/pyproject.toml index 75df06c..7abad9c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,9 +11,12 @@ readme = "README.md" keywords = ["microscopy", "schema"] requires-python = ">=3.8" license = { text = "BSD 3-Clause License" } -authors = [{ email = "talley.lambert@gmail.com", name = "Talley Lambert" }] +authors = [ + { email = "talley.lambert@gmail.com", name = "Talley Lambert" }, + { email = "federico.gasparoli@gmail.com", name = "Federico Gasparoli" }, +] classifiers = [ - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", @@ -24,6 +27,8 @@ classifiers = [ "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 :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Medical Science Apps.", "Topic :: Scientific/Engineering :: Image Processing",