From eba6767de5019c7ca7df0a51b1a5f19c2fbf953b Mon Sep 17 00:00:00 2001 From: ebner Date: Wed, 14 Dec 2022 12:12:14 +0100 Subject: [PATCH] remove conda related stuff as it make too much troubles --- .github/workflows/conda_publish.yaml | 17 ----------------- Readme.md | 7 +------ conda-recipe/build.sh | 1 - conda-recipe/meta.yaml | 19 ------------------- 4 files changed, 1 insertion(+), 43 deletions(-) delete mode 100644 .github/workflows/conda_publish.yaml delete mode 100644 conda-recipe/build.sh delete mode 100644 conda-recipe/meta.yaml diff --git a/.github/workflows/conda_publish.yaml b/.github/workflows/conda_publish.yaml deleted file mode 100644 index 6b55001..0000000 --- a/.github/workflows/conda_publish.yaml +++ /dev/null @@ -1,17 +0,0 @@ -name: conda_publish - -on: - release: - types: [published, edited] - workflow_dispatch: - -jobs: - publish: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: publish-to-conda - uses: paulscherrerinstitute/conda-publish-action@master - with: - subdir: 'conda-recipe' - anacondatoken: ${{ secrets.ANACONDA_TOKEN }} \ No newline at end of file diff --git a/Readme.md b/Readme.md index 9898f4b..0a14edd 100644 --- a/Readme.md +++ b/Readme.md @@ -1,6 +1,6 @@ [![python_test](https://github.com/paulscherrerinstitute/cbf/actions/workflows/python_test.yaml/badge.svg)](https://github.com/paulscherrerinstitute/cbf/actions/workflows/python_test.yaml) [![pypi_publish](https://github.com/paulscherrerinstitute/cbf/actions/workflows/pypi_publish.yaml/badge.svg)](https://github.com/paulscherrerinstitute/cbf/actions/workflows/pypi_publish.yaml) -[![conda_publish](https://github.com/paulscherrerinstitute/cbf/actions/workflows/conda_publish.yaml/badge.svg)](https://github.com/paulscherrerinstitute/cbf/actions/workflows/conda_publish.yaml) + # Overview CBF is a simple Python package (Python 3.x) for reading and writing cbf (Crystallographic Binary Format) files. @@ -13,11 +13,6 @@ CBF is a simple Python package (Python 3.x) for reading and writing cbf (Crystal pip install cbf ``` -## Anaconda - -``` -conda install -c https://conda.anaconda.org/paulscherrerinstitute cbf -``` # Usage diff --git a/conda-recipe/build.sh b/conda-recipe/build.sh deleted file mode 100644 index 5a5aeeb..0000000 --- a/conda-recipe/build.sh +++ /dev/null @@ -1 +0,0 @@ -$PYTHON setup.py install diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml deleted file mode 100644 index 9230d34..0000000 --- a/conda-recipe/meta.yaml +++ /dev/null @@ -1,19 +0,0 @@ -package: - name: cbf - version: 1.1.4 -source: - path: .. - -requirements: - build: - - m2w64-make [win] - - python - - setuptools - - numpy - run: - - python - - numpy - -about: - home: https://github.com/paulscherrerinstitute/cbf - summary: "Python library for reading and writing CBF files."