From 9693a11da22aa66bac3acf80e6d4c0a8d7fc5cf4 Mon Sep 17 00:00:00 2001 From: rcervinoucm Date: Tue, 23 Jul 2024 12:53:53 +0200 Subject: [PATCH] Delete .github/conda directory --- .github/conda/bld.bat | 2 - .github/conda/build.sh | 6 --- .github/conda/conda_build_config.yaml | 4 -- .github/conda/meta.yaml | 59 --------------------------- 4 files changed, 71 deletions(-) delete mode 100644 .github/conda/bld.bat delete mode 100644 .github/conda/build.sh delete mode 100644 .github/conda/conda_build_config.yaml delete mode 100644 .github/conda/meta.yaml diff --git a/.github/conda/bld.bat b/.github/conda/bld.bat deleted file mode 100644 index 2c49d930..00000000 --- a/.github/conda/bld.bat +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -$PYTHON -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv diff --git a/.github/conda/build.sh b/.github/conda/build.sh deleted file mode 100644 index 5d10b6aa..00000000 --- a/.github/conda/build.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -$PYTHON -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv - - - diff --git a/.github/conda/conda_build_config.yaml b/.github/conda/conda_build_config.yaml deleted file mode 100644 index 0a65b759..00000000 --- a/.github/conda/conda_build_config.yaml +++ /dev/null @@ -1,4 +0,0 @@ -python: - - 3.12 - - 3.11 - - 3.10 diff --git a/.github/conda/meta.yaml b/.github/conda/meta.yaml deleted file mode 100644 index 45ec5e6e..00000000 --- a/.github/conda/meta.yaml +++ /dev/null @@ -1,59 +0,0 @@ -{% set pyproject = load_file_data('../../pyproject.toml','toml', from_recipe_dir=True) %} -{% set project = pyproject.get('project', {}) %} -package: - name: dl1_data_handler - version: {{ project.get('dynamic') }} -source: - path: ../.. -build: - noarch: generic - #number: 0 - string: {{ 'py'+ PY_VER.replace('.','') + '_' + environ.get('GIT_DESCRIBE_HASH', 'latest') }} - script: python -m pip install . - -requirements: - build: - - python #==3.12 - - numpy >=1.20 - - astropy - - scipy - - jupyter - - ctapipe ==0.20.0 - - pytables >=3.8 - - pandas - - git - host: - - python #==3.12 - - numpy >=1.20 - - astropy - - scipy - - jupyter - - ctapipe ==0.20.0 - - pytables >=3.8 - - pandas - - git - run: - - python #==3.12 - - numpy >=1.20 - - jupyter - - astropy - - scipy - - ctapipe ==0.20.0 - - pytables >=3.8 - - pandas - - git - - test: - imports: - - dl1-data-handler - -about: - home: https://github.com/cta-observatory/dl1-data-handler - license: MIT - license_file: LICENSE - summary: DL1 to PyTables HDF5 data dumper/writer/processor for ML studies. -extra: - recipe-maintainers: - - nietootein - - TjarkMiener -