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",