From 6833c0c0c5004e07ded6189884d432ba33fd50ac Mon Sep 17 00:00:00 2001 From: Liam Gray Date: Wed, 31 Jul 2024 14:14:58 -0700 Subject: [PATCH] try fix zarr version --- .github/workflows/main.yml | 1 + pyproject.toml | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 057a237a..d7c3a6a4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -61,6 +61,7 @@ jobs: - name: Install pip dependencies run: | + pip install zarr==2.11.3 pip install -e . pip install -e .[mpi] pip install -e .[compression] diff --git a/pyproject.toml b/pyproject.toml index 52e139dc..343d0388 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,6 +34,8 @@ dependencies = [ classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", + "Intended Audience :: Science/Research", + "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", @@ -44,7 +46,7 @@ classifiers = [ mpi = ["mpi4py>=1.3"] compression = ["bitshuffle", "numcodecs>=0.7.3", "zarr>=2.11.0"] profiling = ["pyinstrument"] -doc = ["Sphinx>=5.0", "sphinx_rtd_theme", "funcsigs", "mock"] +docs = ["Sphinx>=5.0", "sphinx_rtd_theme", "funcsigs", "mock"] lint = ["ruff", "black"] test = ["pytest", "pytest-lazy-fixtures"]