From e2d49a313f66cdc9d4b8daa9c260b4c3227091ef Mon Sep 17 00:00:00 2001 From: Talley Lambert Date: Fri, 7 Apr 2023 14:29:25 -0400 Subject: [PATCH] remove conda folder (#19) --- conda/README.md | 13 ------------- conda/build.sh | 2 -- conda/conda_build_config.yaml | 4 ---- conda/meta.yaml | 32 -------------------------------- 4 files changed, 51 deletions(-) delete mode 100644 conda/README.md delete mode 100644 conda/build.sh delete mode 100644 conda/conda_build_config.yaml delete mode 100644 conda/meta.yaml diff --git a/conda/README.md b/conda/README.md deleted file mode 100644 index f364d17..0000000 --- a/conda/README.md +++ /dev/null @@ -1,13 +0,0 @@ -Steps to build the package -========================== - -```bash -# install conda build -conda install conda-build anaconda-client=1.11 -conda update conda-build - -# then build the recipe -conda build -c conda-forge -c gurobi . -``` - -The last command gives instructions about how to upload the package. diff --git a/conda/build.sh b/conda/build.sh deleted file mode 100644 index 8e56281..0000000 --- a/conda/build.sh +++ /dev/null @@ -1,2 +0,0 @@ -git submodule update --init -${PYTHON} -m pip install --no-deps . -vv diff --git a/conda/conda_build_config.yaml b/conda/conda_build_config.yaml deleted file mode 100644 index 77f0eec..0000000 --- a/conda/conda_build_config.yaml +++ /dev/null @@ -1,4 +0,0 @@ -python: - - 3.9 - - 3.10 - - 3.11 diff --git a/conda/meta.yaml b/conda/meta.yaml deleted file mode 100644 index a820f88..0000000 --- a/conda/meta.yaml +++ /dev/null @@ -1,32 +0,0 @@ -package: - name: ilpy - version: "0.2.3" - -source: - # git_url: https://github.com/funkelab/ilpy - # git_rev: bb6df2e90543ad500c32bcbab6991f959a4a6f71 - path: .. - -build: - number: 1 - -requirements: - build: - - {{ compiler('cxx') }} - host: - - cython - - python {{python}} - - scip - - gurobi - run: - - python {{python}} - - scip - - gurobi - -test: - imports: - - ilpy - -about: - home: https://github.com/funkelab/ilpy - license: MIT