diff --git a/.github/workflows/build-and-deploy-wheels-on-pypi.yml b/.github/workflows/build-and-deploy-wheels-on-pypi.yml index ffd1c66..12c362d 100644 --- a/.github/workflows/build-and-deploy-wheels-on-pypi.yml +++ b/.github/workflows/build-and-deploy-wheels-on-pypi.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest] # macos-latest + os: [ubuntu-latest, macos-latest] # windows-latest fails steps: - name: Checkout source diff --git a/environment.yml b/environment.yml index d80fa72..abf96dd 100644 --- a/environment.yml +++ b/environment.yml @@ -7,6 +7,7 @@ dependencies: - python >=3.11 - numpy >=1.24 - fsspec >=2024.3.0 + - pyfive >=1.1.2 - pytest >=8 - pytest-xdist - udunits2 # cf-python needs it @@ -14,4 +15,3 @@ dependencies: - pip: - cf-python @ git+https://github.com/davidhassell/cf-python.git@kerchunk-read - cfdm @ git+https://github.com/davidhassell/cfdm.git@pyfive-netcdf - - pyfive @ git+https://github.com/NCAS-CMS/pyfive.git@pbtree2 diff --git a/pyproject.toml b/pyproject.toml index f9f5858..9d83ed4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,15 +22,12 @@ authors = [ dependencies = [ "cftime", "numpy>=1.24", - "pyfive", + "pyfive>=1.1.2", ] [project.optional-dependencies] io = ["fsspec>=2024.3.0"] test = [ - # "cf-python @ git+https://github.com/davidhassell/cf-python.git@kerchunk-read", - # "cfdm @ git+https://github.com/davidhassell/cfdm.git@pyfive-netcdf", - # "pyfive @ git+https://github.com/NCAS-CMS/pyfive.git@pbtree2", "pytest>=8", "pytest-cov>=5", "pytest-xdist",