From af4dfd7b795c355bbcf6ea7ae9203dc683711e90 Mon Sep 17 00:00:00 2001 From: Giordon Stark Date: Mon, 18 Nov 2024 16:15:38 -0800 Subject: [PATCH 1/5] get atlas-schema in conda --- recipes/atlas-schema/meta.yaml | 49 ++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 recipes/atlas-schema/meta.yaml diff --git a/recipes/atlas-schema/meta.yaml b/recipes/atlas-schema/meta.yaml new file mode 100644 index 0000000000000..fe94ed00e6727 --- /dev/null +++ b/recipes/atlas-schema/meta.yaml @@ -0,0 +1,49 @@ +{% set name = "atlas-schema" %} +{% set version = "0.1.0" %} +{% set python_min = "3.9" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/atlas_schema-{{ version }}.tar.gz + sha256: 50f8fd29e958f00ff5fe8b0f2235e281952e5391e893bb38e61c2c50751b7766 + +build: + noarch: python + script: {{ PYTHON }} -m pip install . -vv + number: 0 + skip: true # [win] + +requirements: + host: + - python {{ python_min }} + - pip + - hatchling >=0.7 + - hatch-vcs >=0.3.0 + run: + - python >={{ python_min }} + - coffea >=2024.10.0 + # below are for coffea[dask] + - distributed >=2024.3.0 + - "bokeh !=3.0.*,>=2.4.2" + +test: + imports: + - atlas_schema + commands: + - pip check + requires: + - python {{ python_min }} + - pip + +about: + home: https://github.com/scipp-atlas/atlas-schema/ + summary: Helper python package for ATLAS Common NTuple Analysis work. + license: Apache-2.0 + license_file: LICENSE + +extra: + recipe-maintainers: + - kratsg From c3cae11a789fea771e0b0ca3eaebce95d44f55d7 Mon Sep 17 00:00:00 2001 From: Giordon Stark Date: Wed, 20 Nov 2024 08:44:13 -0800 Subject: [PATCH 2/5] drop skip: true and see why windows fails --- recipes/atlas-schema/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/atlas-schema/meta.yaml b/recipes/atlas-schema/meta.yaml index fe94ed00e6727..ffb11e386af48 100644 --- a/recipes/atlas-schema/meta.yaml +++ b/recipes/atlas-schema/meta.yaml @@ -14,7 +14,7 @@ build: noarch: python script: {{ PYTHON }} -m pip install . -vv number: 0 - skip: true # [win] + #skip: true # [win] requirements: host: From 8d50ce603e6c6e951910435228b47d99ce187cc9 Mon Sep 17 00:00:00 2001 From: Giordon Stark Date: Wed, 20 Nov 2024 19:10:29 +0100 Subject: [PATCH 3/5] Update recipes/atlas-schema/meta.yaml Co-authored-by: Matthew Feickert --- recipes/atlas-schema/meta.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/recipes/atlas-schema/meta.yaml b/recipes/atlas-schema/meta.yaml index ffb11e386af48..729fcdf10803b 100644 --- a/recipes/atlas-schema/meta.yaml +++ b/recipes/atlas-schema/meta.yaml @@ -14,7 +14,6 @@ build: noarch: python script: {{ PYTHON }} -m pip install . -vv number: 0 - #skip: true # [win] requirements: host: From d1a341cf7dd6fad6dd8997c95fcefceb39e4c35b Mon Sep 17 00:00:00 2001 From: Giordon Stark Date: Wed, 20 Nov 2024 19:11:05 +0100 Subject: [PATCH 4/5] Update recipes/atlas-schema/meta.yaml Co-authored-by: Filipe --- recipes/atlas-schema/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/atlas-schema/meta.yaml b/recipes/atlas-schema/meta.yaml index 729fcdf10803b..fbd2a2612fe85 100644 --- a/recipes/atlas-schema/meta.yaml +++ b/recipes/atlas-schema/meta.yaml @@ -26,7 +26,7 @@ requirements: - coffea >=2024.10.0 # below are for coffea[dask] - distributed >=2024.3.0 - - "bokeh !=3.0.*,>=2.4.2" + - bokeh !=3.0.*,>=2.4.2 test: imports: From f2d8592d5432f2890183704e8b53bc58f0b6918a Mon Sep 17 00:00:00 2001 From: Giordon Stark Date: Wed, 20 Nov 2024 19:11:16 +0100 Subject: [PATCH 5/5] Update recipes/atlas-schema/meta.yaml Co-authored-by: Filipe --- recipes/atlas-schema/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/atlas-schema/meta.yaml b/recipes/atlas-schema/meta.yaml index fbd2a2612fe85..98b549fc9dbba 100644 --- a/recipes/atlas-schema/meta.yaml +++ b/recipes/atlas-schema/meta.yaml @@ -12,7 +12,7 @@ source: build: noarch: python - script: {{ PYTHON }} -m pip install . -vv + script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation number: 0 requirements: