Merge pull request #54 from regro-cf-autotick-bot/0.2.18_h94e2b3
gdptools v0.2.18
This commit is contained in:
Generated
+2
@@ -25,3 +25,5 @@
|
|||||||
|
|
||||||
# Rattler-build's artifacts are in `output` when not specifying anything.
|
# Rattler-build's artifacts are in `output` when not specifying anything.
|
||||||
/output
|
/output
|
||||||
|
# Pixi's configuration
|
||||||
|
.pixi
|
||||||
|
|||||||
Generated
+1
-1
@@ -12,7 +12,7 @@ source .scripts/logging_utils.sh
|
|||||||
set -xeo pipefail
|
set -xeo pipefail
|
||||||
|
|
||||||
THISDIR="$( cd "$( dirname "$0" )" >/dev/null && pwd )"
|
THISDIR="$( cd "$( dirname "$0" )" >/dev/null && pwd )"
|
||||||
PROVIDER_DIR="$(basename $THISDIR)"
|
PROVIDER_DIR="$(basename "$THISDIR")"
|
||||||
|
|
||||||
FEEDSTOCK_ROOT="$( cd "$( dirname "$0" )/.." >/dev/null && pwd )"
|
FEEDSTOCK_ROOT="$( cd "$( dirname "$0" )/.." >/dev/null && pwd )"
|
||||||
RECIPE_ROOT="${FEEDSTOCK_ROOT}/recipe"
|
RECIPE_ROOT="${FEEDSTOCK_ROOT}/recipe"
|
||||||
|
|||||||
Generated
+33
-14
@@ -10,6 +10,7 @@ import glob
|
|||||||
import os
|
import os
|
||||||
import platform
|
import platform
|
||||||
import subprocess
|
import subprocess
|
||||||
|
import sys
|
||||||
from argparse import ArgumentParser
|
from argparse import ArgumentParser
|
||||||
|
|
||||||
|
|
||||||
@@ -44,10 +45,19 @@ def run_osx_build(ns):
|
|||||||
subprocess.check_call([script])
|
subprocess.check_call([script])
|
||||||
|
|
||||||
|
|
||||||
|
def run_win_build(ns):
|
||||||
|
script = ".scripts/run_win_build.bat"
|
||||||
|
subprocess.check_call(["cmd", "/D", "/Q", "/C", f"CALL {script}"])
|
||||||
|
|
||||||
|
|
||||||
def verify_config(ns):
|
def verify_config(ns):
|
||||||
|
choices_filter = ns.filter or "*"
|
||||||
valid_configs = {
|
valid_configs = {
|
||||||
os.path.basename(f)[:-5] for f in glob.glob(".ci_support/*.yaml")
|
os.path.basename(f)[:-5]
|
||||||
|
for f in glob.glob(f".ci_support/{choices_filter}.yaml")
|
||||||
}
|
}
|
||||||
|
if choices_filter != "*":
|
||||||
|
print(f"filtering for '{choices_filter}.yaml' configs")
|
||||||
print(f"valid configs are {valid_configs}")
|
print(f"valid configs are {valid_configs}")
|
||||||
if ns.config in valid_configs:
|
if ns.config in valid_configs:
|
||||||
print("Using " + ns.config + " configuration")
|
print("Using " + ns.config + " configuration")
|
||||||
@@ -60,30 +70,37 @@ def verify_config(ns):
|
|||||||
selections = list(enumerate(sorted(valid_configs), 1))
|
selections = list(enumerate(sorted(valid_configs), 1))
|
||||||
for i, c in selections:
|
for i, c in selections:
|
||||||
print(f"{i}. {c}")
|
print(f"{i}. {c}")
|
||||||
s = input("\n> ")
|
try:
|
||||||
|
s = input("\n> ")
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
print("\nno option selected, bye!", file=sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
idx = int(s) - 1
|
idx = int(s) - 1
|
||||||
ns.config = selections[idx][1]
|
ns.config = selections[idx][1]
|
||||||
print(f"selected {ns.config}")
|
print(f"selected {ns.config}")
|
||||||
else:
|
else:
|
||||||
raise ValueError("config " + ns.config + " is not valid")
|
raise ValueError("config " + ns.config + " is not valid")
|
||||||
# Remove the following, as implemented
|
if (
|
||||||
if ns.config.startswith("win"):
|
ns.config.startswith("osx")
|
||||||
raise ValueError(
|
and platform.system() == "Darwin"
|
||||||
f"only Linux/macOS configs currently supported, got {ns.config}"
|
and not os.environ.get("OSX_SDK_DIR")
|
||||||
|
):
|
||||||
|
raise RuntimeError(
|
||||||
|
"Need OSX_SDK_DIR env variable set. Run 'export OSX_SDK_DIR=$PWD/SDKs' "
|
||||||
|
"to download the SDK automatically to '$PWD/SDKs/MacOSX<ver>.sdk'. "
|
||||||
|
"Note: OSX_SDK_DIR must be set to an absolute path. "
|
||||||
|
"Setting this variable implies agreement to the licensing terms of the SDK by Apple."
|
||||||
)
|
)
|
||||||
elif ns.config.startswith("osx"):
|
|
||||||
if "OSX_SDK_DIR" not in os.environ:
|
|
||||||
raise RuntimeError(
|
|
||||||
"Need OSX_SDK_DIR env variable set. Run 'export OSX_SDK_DIR=$PWD/SDKs' "
|
|
||||||
"to download the SDK automatically to '$PWD/SDKs/MacOSX<ver>.sdk'. "
|
|
||||||
"Note: OSX_SDK_DIR must be set to an absolute path. "
|
|
||||||
"Setting this variable implies agreement to the licensing terms of the SDK by Apple."
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def main(args=None):
|
def main(args=None):
|
||||||
p = ArgumentParser("build-locally")
|
p = ArgumentParser("build-locally")
|
||||||
p.add_argument("config", default=None, nargs="?")
|
p.add_argument("config", default=None, nargs="?")
|
||||||
|
p.add_argument(
|
||||||
|
"--filter",
|
||||||
|
default=None,
|
||||||
|
help="Glob string to filter which build choices are presented in interactive mode.",
|
||||||
|
)
|
||||||
p.add_argument(
|
p.add_argument(
|
||||||
"--debug",
|
"--debug",
|
||||||
action="store_true",
|
action="store_true",
|
||||||
@@ -104,6 +121,8 @@ def main(args=None):
|
|||||||
run_docker_build(ns)
|
run_docker_build(ns)
|
||||||
elif ns.config.startswith("osx"):
|
elif ns.config.startswith("osx"):
|
||||||
run_osx_build(ns)
|
run_osx_build(ns)
|
||||||
|
elif ns.config.startswith("win"):
|
||||||
|
run_win_build(ns)
|
||||||
finally:
|
finally:
|
||||||
recipe_license_file = os.path.join(
|
recipe_license_file = os.path.join(
|
||||||
"recipe", "recipe-scripts-license.txt"
|
"recipe", "recipe-scripts-license.txt"
|
||||||
|
|||||||
+36
-37
@@ -1,6 +1,6 @@
|
|||||||
{% set name = "gdptools" %}
|
{% set name = "gdptools" %}
|
||||||
{% set version = "0.2.17" %}
|
{% set version = "0.2.18" %}
|
||||||
{% set python_min = "3.9" %}
|
{% set python_min = "3.10" %}
|
||||||
|
|
||||||
package:
|
package:
|
||||||
name: {{ name|lower }}
|
name: {{ name|lower }}
|
||||||
@@ -8,13 +8,13 @@ package:
|
|||||||
|
|
||||||
source:
|
source:
|
||||||
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/gdptools-{{ version }}.tar.gz
|
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/gdptools-{{ version }}.tar.gz
|
||||||
sha256: 021d18613365538ba1a4a0d6075124e36ee9cdd42b5447957d9880f13288c3d9
|
sha256: f6d28869342447fee02fceebf48847367a1adfe32b74a61095a45b76656f98d6
|
||||||
|
|
||||||
build:
|
build:
|
||||||
entry_points:
|
entry_points:
|
||||||
- gdptools = gdptools.__main__:main
|
- gdptools = gdptools.__main__:main
|
||||||
noarch: python
|
noarch: python
|
||||||
script: {{ PYTHON }} -m pip install . -vv
|
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
|
||||||
number: 0
|
number: 0
|
||||||
|
|
||||||
requirements:
|
requirements:
|
||||||
@@ -23,44 +23,44 @@ requirements:
|
|||||||
- pip
|
- pip
|
||||||
- poetry-core >=1.0.0
|
- poetry-core >=1.0.0
|
||||||
run:
|
run:
|
||||||
# - certifi <2023.7.22
|
|
||||||
# - bump2version >=1.0.1,<2.0.0
|
|
||||||
- geoviews >=1.12.0,<2.0.0
|
|
||||||
- pystac >=1.10.0,<2.0.0
|
|
||||||
- s3fs >=2024.3.1,<2025.0.0
|
|
||||||
- urllib3 >=1.26.0,<2.0.0
|
|
||||||
- xpystac >=0.1.3,<0.2.0
|
|
||||||
- tqdm >=4.66.2,<5.0.0
|
|
||||||
- statsmodels >=0.14.0,<0.15.0
|
|
||||||
- dask-core >=2024.7.1,<2025.0.0
|
|
||||||
- python >={{ python_min }}
|
- python >={{ python_min }}
|
||||||
- fastparquet >=2024.2.0
|
|
||||||
- pyarrow <18.1.1
|
|
||||||
- dask-geopandas 0.4.1
|
|
||||||
- pandas >=2.0.0
|
|
||||||
- numpy >2.0
|
|
||||||
- geopandas >=0.13.0
|
|
||||||
- shapely >=2.0
|
|
||||||
# - pygeos >=0.14.0,<0.15.0
|
|
||||||
- pyproj >=3.3.0
|
|
||||||
- metpy >=1.2.0
|
|
||||||
# - attrs >=20.3,<22
|
|
||||||
- pydantic >=1.10.5,<2.0.0
|
|
||||||
- xarray >=2024.3.0
|
|
||||||
- netcdf4 >=1.5.8
|
|
||||||
- scipy >=1.13.0,<2.0.0
|
|
||||||
- pydap >=3.2.2,<4.0.0
|
|
||||||
- zarr >=2.12.0
|
|
||||||
- rasterio >=1.2.9,<1.4.0
|
|
||||||
- bottleneck >=1.3.3
|
- bottleneck >=1.3.3
|
||||||
- dask >=2022.0.0
|
- dask >=2022.0.0
|
||||||
|
- dask-core >2024.8.0
|
||||||
|
- dask-geopandas >0.4.1
|
||||||
|
- fastparquet >=2024.2.0
|
||||||
|
- geopandas >=0.13.0
|
||||||
|
- geoviews >=1.12.0,<2.0.0
|
||||||
- joblib >=1.4.0
|
- joblib >=1.4.0
|
||||||
|
- metpy >=1.2.0
|
||||||
|
- netcdf4 >=1.5.8
|
||||||
|
- numpy >2.0
|
||||||
|
- pandas >=2.0.0
|
||||||
|
- pyarrow <18.1.1
|
||||||
|
- pydantic >=1.10.5,<2.0.0
|
||||||
|
- pydap >=3.2.2,<4.0.0
|
||||||
|
- pyproj >=3.3.0
|
||||||
|
- pystac >=1.10.0,<2.0.0
|
||||||
|
- rasterio >=1.2.9,<1.5.0
|
||||||
- rioxarray >=0.13.0
|
- rioxarray >=0.13.0
|
||||||
|
- s3fs >=2025.2.0,<2026.0.0
|
||||||
|
- scipy >=1.13.0,<2.0.0
|
||||||
|
- shapely >=2.0
|
||||||
|
- statsmodels >=0.14.0,<0.15.0
|
||||||
|
- tqdm >=4.66.2,<5.0.0
|
||||||
|
- urllib3 >=1.26.0,<2.0.0
|
||||||
|
- xarray 2024.7.0
|
||||||
|
- xpystac >=0.1.3,<0.2.0
|
||||||
|
- zarr >=2.12.0
|
||||||
|
# - attrs >=20.3,<22
|
||||||
|
# - bump2version >=1.0.1,<2.0.0
|
||||||
|
# - certifi <2023.7.22
|
||||||
|
# - pygeos >=0.14.0,<0.15.0
|
||||||
# xarray[io]
|
# xarray[io]
|
||||||
- h5netcdf
|
|
||||||
- fsspec
|
|
||||||
- cftime
|
|
||||||
- cfgrib
|
- cfgrib
|
||||||
|
- cftime
|
||||||
|
- fsspec
|
||||||
|
- h5netcdf
|
||||||
# - pooch
|
# - pooch
|
||||||
# xarray[accel]
|
# xarray[accel]
|
||||||
# - flox
|
# - flox
|
||||||
@@ -69,8 +69,7 @@ test:
|
|||||||
imports:
|
imports:
|
||||||
- gdptools
|
- gdptools
|
||||||
commands:
|
commands:
|
||||||
# Should work with shapely 1.8.5, we can remove this when there is a next release with revised pins.
|
- pip check
|
||||||
# - pip check
|
|
||||||
- gdptools --help
|
- gdptools --help
|
||||||
requires:
|
requires:
|
||||||
- python {{ python_min }}
|
- python {{ python_min }}
|
||||||
|
|||||||
Reference in New Issue
Block a user