From b29789236dc9aab7c8a874398adc7fb73b4c9963 Mon Sep 17 00:00:00 2001 From: fynnbe Date: Tue, 12 Mar 2024 14:34:41 +0100 Subject: [PATCH] houskeeping --- .github/workflows/{build.yml => build.yaml} | 4 ++-- setup.py | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) rename .github/workflows/{build.yml => build.yaml} (98%) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yaml similarity index 98% rename from .github/workflows/build.yml rename to .github/workflows/build.yaml index 3495e794..e6e1fc88 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yaml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9] + python-version: [3.8, 3.9, 3.10, 3.11, 3.12] steps: - uses: actions/checkout@v3 - name: Install Conda environment with Micromamba @@ -46,7 +46,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9] + python-version: [3.8, 3.12] steps: - uses: actions/checkout@v3 - name: Install Conda environment with Micromamba diff --git a/setup.py b/setup.py index 0024c735..9665a2a1 100644 --- a/setup.py +++ b/setup.py @@ -25,11 +25,13 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ], packages=find_namespace_packages(exclude=["tests"]), install_requires=[ "bioimageio.spec==0.5.0.*", "imageio>=2.5", + "loguru", "numpy", "ruyaml", "tifffile",