Skip to content

Commit

Permalink
merge w/ main
Browse files Browse the repository at this point in the history
  • Loading branch information
norlandrhagen committed Oct 23, 2024
2 parents 327395e + 24694a9 commit c3a4658
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11","3.12"]
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -31,11 +31,13 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: pyproject.toml
- name: 🎯 Check cache hit
run: echo '${{ steps.setup-python.outputs.cache-hit }}'
- name: 🌈 Install pangeo-forge-recipes package
shell: bash -l {0}
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[test]"
- name: 🧑‍💻 On the nightly run, test upstream dev versions
if: |
Expand Down
20 changes: 9 additions & 11 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
[build-system]
requires = ["setuptools>=67.7.2", "wheel", "setuptools_scm[toml]>=8.0"]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.0"]
build-backend = "setuptools.build_meta"



[project]
name = "pangeo-forge-recipes"
dynamic = ["version"]
Expand All @@ -27,18 +25,18 @@ classifiers = [
license = { text = "Apache-2.0" }
keywords = ["pangeo", "data"]
dependencies = [
"apache-beam == 2.58.1 ",
"apache-beam>=2.48",
"cftime",
"dask >= 2021.11.2",
"dask",
"fastparquet",
"fsspec[http] >= 2023.4.0",
"fsspec[http]",
"h5netcdf",
"h5py >= 3.3.0",
"kerchunk >= 0.0.7",
"h5py",
"kerchunk!=0.2.6",
"netcdf4",
"numcodecs >= 0.9.0",
"xarray >= 0.18.0",
"zarr >= 2.12.0",
"numcodecs",
"xarray",
"zarr",
]

[project.optional-dependencies]
Expand Down

0 comments on commit c3a4658

Please sign in to comment.