Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add atlas-schema into conda-forge #28268

Merged
merged 5 commits into from
Nov 20, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions recipes/atlas-schema/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{% set name = "atlas-schema" %}
{% set version = "0.1.0" %}
ocefpaf marked this conversation as resolved.
Show resolved Hide resolved
{% 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
kratsg marked this conversation as resolved.
Show resolved Hide resolved
number: 0
#skip: true # [win]
kratsg marked this conversation as resolved.
Show resolved Hide resolved
kratsg marked this conversation as resolved.
Show resolved Hide resolved

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"
kratsg marked this conversation as resolved.
Show resolved Hide resolved

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
Loading