Skip to content

Commit

Permalink
build: add py3.13 (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
tlambert03 authored Sep 25, 2024
1 parent 2c3addb commit dea132e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit dea132e

Please sign in to comment.