-
-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28268 from kratsg/main
feat: add atlas-schema into conda-forge
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{% 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 --no-deps --no-build-isolation | ||
number: 0 | ||
|
||
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 |