From ad34a4c4ba4f79540f61c250a5504325a9e890b3 Mon Sep 17 00:00:00 2001 From: Jonas Eschle Date: Sun, 23 Jul 2023 14:08:20 +0200 Subject: [PATCH 1/5] Add files via upload --- recipes/meta.yaml | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 recipes/meta.yaml diff --git a/recipes/meta.yaml b/recipes/meta.yaml new file mode 100644 index 0000000000000..551bf9d4e2563 --- /dev/null +++ b/recipes/meta.yaml @@ -0,0 +1,47 @@ +{% set name = "zfit_interface" %} +{% set version = "0.0.3" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/zfit_interface-{{ version }}.tar.gz + sha256: af7e8ed409f136187b2cd4def723504f9d619738668e963af388a79121239f74 + +build: + noarch: python + script: {{ PYTHON }} -m pip install . -vv + number: 0 + +requirements: + host: + - python >=3.7 + - setuptools >=42 + - setuptools-scm >=3.4 + - setuptools_scm_git_archive + - wheel + - pip + run: + - python >=3.7 + - numpy + - typing-extensions + - uhi + +test: + imports: + - zfit_interface + commands: + - pip check + requires: + - pip + +about: + home: https://github.com/zfit/zfit-interface + summary: zfit model fitting interface for HEP + license: BSD-3-Clause + license_file: LICENSE + +extra: + recipe-maintainers: + - jonas-eschle From c8407ec0f1491df8753e6c0923d050ce5e72ed5a Mon Sep 17 00:00:00 2001 From: Jonas Eschle Date: Sun, 23 Jul 2023 14:11:27 +0200 Subject: [PATCH 2/5] Add files via upload --- LICENSE | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000000000..48e997a46ca26 --- /dev/null +++ b/LICENSE @@ -0,0 +1,11 @@ +BSD 3-Clause License + +Copyright (c) 2021, zfit. All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. From 8f0304c941f14ffabdcb0b66ef890a5e0a66c454 Mon Sep 17 00:00:00 2001 From: Jonas Eschle Date: Sun, 23 Jul 2023 14:18:24 +0200 Subject: [PATCH 3/5] Delete LICENSE --- LICENSE | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 LICENSE diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 48e997a46ca26..0000000000000 --- a/LICENSE +++ /dev/null @@ -1,11 +0,0 @@ -BSD 3-Clause License - -Copyright (c) 2021, zfit. All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - - 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. From ff5d7f03a6c7f21d576b8a442e2d5639793044ba Mon Sep 17 00:00:00 2001 From: Jonas Eschle Date: Sun, 23 Jul 2023 14:21:28 +0200 Subject: [PATCH 4/5] Create meta.yaml --- recipes/zfit_interface/meta.yaml | 47 ++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 recipes/zfit_interface/meta.yaml diff --git a/recipes/zfit_interface/meta.yaml b/recipes/zfit_interface/meta.yaml new file mode 100644 index 0000000000000..551bf9d4e2563 --- /dev/null +++ b/recipes/zfit_interface/meta.yaml @@ -0,0 +1,47 @@ +{% set name = "zfit_interface" %} +{% set version = "0.0.3" %} + +package: + name: {{ name|lower }} + version: {{ version }} + +source: + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/zfit_interface-{{ version }}.tar.gz + sha256: af7e8ed409f136187b2cd4def723504f9d619738668e963af388a79121239f74 + +build: + noarch: python + script: {{ PYTHON }} -m pip install . -vv + number: 0 + +requirements: + host: + - python >=3.7 + - setuptools >=42 + - setuptools-scm >=3.4 + - setuptools_scm_git_archive + - wheel + - pip + run: + - python >=3.7 + - numpy + - typing-extensions + - uhi + +test: + imports: + - zfit_interface + commands: + - pip check + requires: + - pip + +about: + home: https://github.com/zfit/zfit-interface + summary: zfit model fitting interface for HEP + license: BSD-3-Clause + license_file: LICENSE + +extra: + recipe-maintainers: + - jonas-eschle From 711b4bca73a86937357a87e53fa48784da54cf07 Mon Sep 17 00:00:00 2001 From: Jonas Eschle Date: Sun, 23 Jul 2023 14:22:14 +0200 Subject: [PATCH 5/5] Delete meta.yaml --- recipes/meta.yaml | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 recipes/meta.yaml diff --git a/recipes/meta.yaml b/recipes/meta.yaml deleted file mode 100644 index 551bf9d4e2563..0000000000000 --- a/recipes/meta.yaml +++ /dev/null @@ -1,47 +0,0 @@ -{% set name = "zfit_interface" %} -{% set version = "0.0.3" %} - -package: - name: {{ name|lower }} - version: {{ version }} - -source: - url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/zfit_interface-{{ version }}.tar.gz - sha256: af7e8ed409f136187b2cd4def723504f9d619738668e963af388a79121239f74 - -build: - noarch: python - script: {{ PYTHON }} -m pip install . -vv - number: 0 - -requirements: - host: - - python >=3.7 - - setuptools >=42 - - setuptools-scm >=3.4 - - setuptools_scm_git_archive - - wheel - - pip - run: - - python >=3.7 - - numpy - - typing-extensions - - uhi - -test: - imports: - - zfit_interface - commands: - - pip check - requires: - - pip - -about: - home: https://github.com/zfit/zfit-interface - summary: zfit model fitting interface for HEP - license: BSD-3-Clause - license_file: LICENSE - -extra: - recipe-maintainers: - - jonas-eschle