├── .gitignore ├── .gitattributes ├── ci_support ├── fast_finish_ci_pr_build.sh ├── checkout_merge_commit.sh └── run_docker_build.sh ├── conda-forge.yml ├── LICENSE ├── recipe └── meta.yaml ├── .circleci └── config.yml ├── appveyor.yml ├── .travis.yml └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.patch binary 4 | *.diff binary 5 | meta.yaml text eol=lf 6 | build.sh text eol=lf 7 | bld.bat text eol=crlf 8 | -------------------------------------------------------------------------------- /ci_support/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 4 | python - -v --ci "circle" "${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}" "${CIRCLE_BUILD_NUM}" "${CIRCLE_PR_NUMBER}" 5 | -------------------------------------------------------------------------------- /ci_support/checkout_merge_commit.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | 4 | # Update PR refs for testing. 5 | if [[ -n "${CIRCLE_PR_NUMBER}" ]] 6 | then 7 | FETCH_REFS="${FETCH_REFS} +refs/pull/${CIRCLE_PR_NUMBER}/head:pr/${CIRCLE_PR_NUMBER}/head" 8 | FETCH_REFS="${FETCH_REFS} +refs/pull/${CIRCLE_PR_NUMBER}/merge:pr/${CIRCLE_PR_NUMBER}/merge" 9 | fi 10 | 11 | # Retrieve the refs. 12 | if [[ -n "${CIRCLE_PR_NUMBER}" ]] 13 | then 14 | git fetch -u origin ${FETCH_REFS} 15 | fi 16 | 17 | # Checkout the PR merge ref. 18 | if [[ -n "${CIRCLE_PR_NUMBER}" ]] 19 | then 20 | git checkout -qf "pr/${CIRCLE_PR_NUMBER}/merge" 21 | fi 22 | 23 | # Check for merge conflicts. 24 | if [[ -n "${CIRCLE_PR_NUMBER}" ]] 25 | then 26 | git branch --merged | grep "pr/${CIRCLE_PR_NUMBER}/head" > /dev/null 27 | fi 28 | -------------------------------------------------------------------------------- /conda-forge.yml: -------------------------------------------------------------------------------- 1 | travis: 2 | secure: 3 | BINSTAR_TOKEN: JgKX/8bmurGEjmRE998DbKrq9wZb0h1HOgg+piiz3a7mkwiKppH/qlqOu6GBGFjfWy1ctvJRkiIELwAHquZ2ML9kYTiUfFXwF1XZW8gUXG8t7H+qc4AZUmGbyShNdnHyIBt7RQPYgRYNEpvxdAwC4BAUOrsjivwhsyCTcc98kYc9TmQCQ8WbfbzXJyhM5/W9bVS5Gnpmn3VZ+gKLGKnxTJcu6AFxqjYbOK5mkf+ONfqJtiZ5R/8hLAocfjIKoJNCUfqHTPT3jL0WUMfmMWGqweTWQNyOOsml4Xya0ZrU5vsKZCFvDvKdGr2ktFy0n3i1bLaH7+4TqS2GtNaqctrykZmB99uSy5dJmy1KdaGVfnhNsz8dGF9Zf2dipAtXRPEgeTVhnjEL0m7rMGdktFwAySAv5U35x0mnw9FaWxube1s0H19StWf6F7eXBEniKPeO7WKslFTcb5ZTCKmr8Y8hO/suq6VvOxIEK3Jf9Y88ej9UsTbK+VTLULsZAYuNnlpeCBW6rWv1VvdCZjvzayEkVyKv0foZ8IBZ0UU51GQxFoZISC+dvl0Gwu9ml3v3Q8vKi93L+O164KaPbJuiP0AWROmMfMlF7kQwNHDUmWdy98AqUVcftrF0d/0zW+QkxlFy8Tp/KBHhp5uiRWIv9ziCuVdcuByr/+drRRE7XQWs3fc= 4 | appveyor: 5 | secure: 6 | BINSTAR_TOKEN: ipv/06DzgA7pzz2CIAtbPxZSsphDtF+JFyoWRnXkn3O8j7oRe3rzqj3LOoq2DZp4 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | BSD 3-clause license 2 | Copyright (c) 2015-2017, conda-forge 3 | All rights reserved. 4 | 5 | Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 6 | 7 | 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 8 | 9 | 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. 10 | 11 | 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. 12 | 13 | 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. 14 | -------------------------------------------------------------------------------- /recipe/meta.yaml: -------------------------------------------------------------------------------- 1 | {% set name = "astroML" %} 2 | {% set version = "0.3" %} 3 | {% set hash_type = "sha256" %} 4 | {% set hash_value = "ea6d0119593aed0e0dadc79c613ac0bddad95e6f12151237562a4fd67552b2b8" %} 5 | 6 | package: 7 | name: '{{ name|lower }}' 8 | version: '{{ version }}' 9 | 10 | source: 11 | fn: '{{ name }}-{{ version }}.tar.gz' 12 | url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz 13 | '{{ hash_type }}': '{{ hash_value }}' 14 | 15 | build: 16 | number: 0 17 | script: 'python setup.py install ' 18 | 19 | requirements: 20 | build: 21 | - python 22 | run: 23 | - python 24 | - numpy >=1.4 25 | - scipy >=0.7 26 | - matplotlib >=0.99 27 | - scikit-learn >=0.10 28 | - astropy >=0.2.5 29 | 30 | test: 31 | imports: 32 | - astroML 33 | - astroML.classification 34 | - astroML.clustering 35 | - astroML.datasets 36 | - astroML.datasets.tools 37 | - astroML.density_estimation 38 | - astroML.dimensionality 39 | - astroML.linear_model 40 | - astroML.plotting 41 | - astroML.stats 42 | - astroML.time_series 43 | 44 | about: 45 | home: http://www.astroML.org/ 46 | license: BSD 2-clause 47 | license_family: BSD 48 | license_file: LICENSE.rst 49 | summary: Tools for machine learning and data mining in Astronomy 50 | description: | 51 | AstroML is a Python module for machine learning and data mining built on 52 | numpy, scipy, scikit-learn, and matplotlib, and distributed under the BSD 53 | license. It contains a growing library of statistical and machine learning 54 | routines for analyzing astronomical data in python, loaders for several 55 | open astronomical datasets, and a large suite of examples of analyzing and 56 | visualizing astronomical datasets. 57 | doc_url: http://www.astroML.org/ 58 | dev_url: https://github.com/astroML/astroML 59 | 60 | extra: 61 | recipe-maintainers: 62 | - mwcraig 63 | - bsipocz 64 | - jakevdp 65 | -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | 3 | jobs: 4 | build__CONDA_PY_27: 5 | working_directory: ~/test 6 | machine: true 7 | environment: 8 | - CONDA_PY: "27" 9 | steps: 10 | - checkout 11 | - run: 12 | name: Fast finish outdated PRs and merge PRs 13 | command: | 14 | ./ci_support/fast_finish_ci_pr_build.sh 15 | ./ci_support/checkout_merge_commit.sh 16 | - run: 17 | command: docker pull condaforge/linux-anvil 18 | - run: 19 | name: Print conda-build environment variables 20 | command: | 21 | echo "CONDA_PY=${CONDA_PY}" 22 | - run: 23 | # Run, test and (if we have a BINSTAR_TOKEN) upload the distributions. 24 | command: ./ci_support/run_docker_build.sh 25 | build__CONDA_PY_35: 26 | working_directory: ~/test 27 | machine: true 28 | environment: 29 | - CONDA_PY: "35" 30 | steps: 31 | - checkout 32 | - run: 33 | name: Fast finish outdated PRs and merge PRs 34 | command: | 35 | ./ci_support/fast_finish_ci_pr_build.sh 36 | ./ci_support/checkout_merge_commit.sh 37 | - run: 38 | command: docker pull condaforge/linux-anvil 39 | - run: 40 | name: Print conda-build environment variables 41 | command: | 42 | echo "CONDA_PY=${CONDA_PY}" 43 | - run: 44 | # Run, test and (if we have a BINSTAR_TOKEN) upload the distributions. 45 | command: ./ci_support/run_docker_build.sh 46 | build__CONDA_PY_36: 47 | working_directory: ~/test 48 | machine: true 49 | environment: 50 | - CONDA_PY: "36" 51 | steps: 52 | - checkout 53 | - run: 54 | name: Fast finish outdated PRs and merge PRs 55 | command: | 56 | ./ci_support/fast_finish_ci_pr_build.sh 57 | ./ci_support/checkout_merge_commit.sh 58 | - run: 59 | command: docker pull condaforge/linux-anvil 60 | - run: 61 | name: Print conda-build environment variables 62 | command: | 63 | echo "CONDA_PY=${CONDA_PY}" 64 | - run: 65 | # Run, test and (if we have a BINSTAR_TOKEN) upload the distributions. 66 | command: ./ci_support/run_docker_build.sh 67 | 68 | workflows: 69 | version: 2 70 | build_and_test: 71 | jobs: 72 | - build__CONDA_PY_27 73 | - build__CONDA_PY_35 74 | - build__CONDA_PY_36 75 | -------------------------------------------------------------------------------- /ci_support/run_docker_build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # PLEASE NOTE: This script has been automatically generated by conda-smithy. Any changes here 4 | # will be lost next time ``conda smithy rerender`` is run. If you would like to make permanent 5 | # changes to this script, consider a proposal to conda-smithy so that other feedstocks can also 6 | # benefit from the improvement. 7 | 8 | FEEDSTOCK_ROOT=$(cd "$(dirname "$0")/.."; pwd;) 9 | RECIPE_ROOT=$FEEDSTOCK_ROOT/recipe 10 | 11 | docker info 12 | 13 | config=$(cat < /dev/null && docker-machine active > /dev/null; then 34 | HOST_USER_ID=$(docker-machine ssh $(docker-machine active) id -u) 35 | fi 36 | 37 | rm -f "$FEEDSTOCK_ROOT/build_artefacts/conda-forge-build-done" 38 | 39 | cat << EOF | docker run -i \ 40 | -v "${RECIPE_ROOT}":/recipe_root \ 41 | -v "${FEEDSTOCK_ROOT}":/feedstock_root \ 42 | -e HOST_USER_ID="${HOST_USER_ID}" \ 43 | -e CONDA_PY="${CONDA_PY}" \ 44 | -a stdin -a stdout -a stderr \ 45 | condaforge/linux-anvil \ 46 | bash || exit 1 47 | 48 | set -e 49 | set +x 50 | export BINSTAR_TOKEN=${BINSTAR_TOKEN} 51 | set -x 52 | export PYTHONUNBUFFERED=1 53 | 54 | echo "$config" > ~/.condarc 55 | # A lock sometimes occurs with incomplete builds. The lock file is stored in build_artefacts. 56 | conda clean --lock 57 | 58 | conda install --yes --quiet conda-forge-build-setup 59 | source run_conda_forge_build_setup 60 | 61 | conda build /recipe_root --quiet || exit 1 62 | upload_or_check_non_existence /recipe_root conda-forge --channel=main || exit 1 63 | 64 | touch /feedstock_root/build_artefacts/conda-forge-build-done 65 | EOF 66 | 67 | # double-check that the build got to the end 68 | # see https://github.com/conda-forge/conda-smithy/pull/337 69 | # for a possible fix 70 | set -x 71 | test -f "$FEEDSTOCK_ROOT/build_artefacts/conda-forge-build-done" || exit 1 72 | -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- 1 | # This file was automatically generated by conda-smithy. To update a component of this 2 | # file, make changes to conda-forge.yml and/or recipe/meta.yaml, and run 3 | # "conda smithy rerender". 4 | 5 | environment: 6 | 7 | BINSTAR_TOKEN: 8 | # The BINSTAR_TOKEN secure variable. This is defined canonically in conda-forge.yml. 9 | secure: ipv/06DzgA7pzz2CIAtbPxZSsphDtF+JFyoWRnXkn3O8j7oRe3rzqj3LOoq2DZp4 10 | 11 | matrix: 12 | - TARGET_ARCH: x86 13 | CONDA_PY: 27 14 | CONDA_INSTALL_LOCN: C:\\Miniconda 15 | 16 | - TARGET_ARCH: x64 17 | CONDA_PY: 27 18 | CONDA_INSTALL_LOCN: C:\\Miniconda-x64 19 | 20 | - TARGET_ARCH: x86 21 | CONDA_PY: 35 22 | CONDA_INSTALL_LOCN: C:\\Miniconda35 23 | 24 | - TARGET_ARCH: x64 25 | CONDA_PY: 35 26 | CONDA_INSTALL_LOCN: C:\\Miniconda35-x64 27 | 28 | - TARGET_ARCH: x86 29 | CONDA_PY: 36 30 | CONDA_INSTALL_LOCN: C:\\Miniconda36 31 | 32 | - TARGET_ARCH: x64 33 | CONDA_PY: 36 34 | CONDA_INSTALL_LOCN: C:\\Miniconda36-x64 35 | 36 | 37 | # We always use a 64-bit machine, but can build x86 distributions 38 | # with the TARGET_ARCH variable. 39 | platform: 40 | - x64 41 | 42 | install: 43 | # If there is a newer build queued for the same PR, cancel this one. 44 | - cmd: | 45 | powershell -Command "(New-Object Net.WebClient).DownloadFile('https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py', 'ff_ci_pr_build.py')" 46 | ff_ci_pr_build -v --ci "appveyor" "%APPVEYOR_ACCOUNT_NAME%/%APPVEYOR_PROJECT_SLUG%" "%APPVEYOR_BUILD_NUMBER%" "%APPVEYOR_PULL_REQUEST_NUMBER%" 47 | del ff_ci_pr_build.py 48 | 49 | # Cywing's git breaks conda-build. (See https://github.com/conda-forge/conda-smithy-feedstock/pull/2.) 50 | - cmd: rmdir C:\cygwin /s /q 51 | 52 | # Add path, activate `conda` and update conda. 53 | - cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat 54 | - cmd: conda update --yes --quiet conda 55 | 56 | - cmd: set PYTHONUNBUFFERED=1 57 | 58 | # Add our channels. 59 | - cmd: conda config --set show_channel_urls true 60 | - cmd: conda config --remove channels defaults 61 | - cmd: conda config --add channels defaults 62 | - cmd: conda config --add channels conda-forge 63 | 64 | # Configure the VM. 65 | - cmd: conda install -n root --quiet --yes conda-forge-build-setup 66 | - cmd: run_conda_forge_build_setup 67 | 68 | # Skip .NET project specific build phase. 69 | build: off 70 | 71 | test_script: 72 | - conda build recipe --quiet 73 | deploy_script: 74 | - cmd: upload_or_check_non_existence .\recipe conda-forge --channel=main 75 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # This file was generated automatically from conda-smithy. To update this configuration, 2 | # update the conda-forge.yml and/or the recipe/meta.yaml. 3 | 4 | language: generic 5 | 6 | os: osx 7 | osx_image: xcode6.4 8 | 9 | env: 10 | matrix: 11 | 12 | - CONDA_PY=27 13 | - CONDA_PY=35 14 | - CONDA_PY=36 15 | global: 16 | # The BINSTAR_TOKEN secure variable. This is defined canonically in conda-forge.yml. 17 | - secure: "JgKX/8bmurGEjmRE998DbKrq9wZb0h1HOgg+piiz3a7mkwiKppH/qlqOu6GBGFjfWy1ctvJRkiIELwAHquZ2ML9kYTiUfFXwF1XZW8gUXG8t7H+qc4AZUmGbyShNdnHyIBt7RQPYgRYNEpvxdAwC4BAUOrsjivwhsyCTcc98kYc9TmQCQ8WbfbzXJyhM5/W9bVS5Gnpmn3VZ+gKLGKnxTJcu6AFxqjYbOK5mkf+ONfqJtiZ5R/8hLAocfjIKoJNCUfqHTPT3jL0WUMfmMWGqweTWQNyOOsml4Xya0ZrU5vsKZCFvDvKdGr2ktFy0n3i1bLaH7+4TqS2GtNaqctrykZmB99uSy5dJmy1KdaGVfnhNsz8dGF9Zf2dipAtXRPEgeTVhnjEL0m7rMGdktFwAySAv5U35x0mnw9FaWxube1s0H19StWf6F7eXBEniKPeO7WKslFTcb5ZTCKmr8Y8hO/suq6VvOxIEK3Jf9Y88ej9UsTbK+VTLULsZAYuNnlpeCBW6rWv1VvdCZjvzayEkVyKv0foZ8IBZ0UU51GQxFoZISC+dvl0Gwu9ml3v3Q8vKi93L+O164KaPbJuiP0AWROmMfMlF7kQwNHDUmWdy98AqUVcftrF0d/0zW+QkxlFy8Tp/KBHhp5uiRWIv9ziCuVdcuByr/+drRRE7XQWs3fc=" 18 | 19 | 20 | before_install: 21 | # Fast finish the PR. 22 | - | 23 | (curl https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py | \ 24 | python - -v --ci "travis" "${TRAVIS_REPO_SLUG}" "${TRAVIS_BUILD_NUMBER}" "${TRAVIS_PULL_REQUEST}") || exit 1 25 | 26 | # Remove homebrew. 27 | - | 28 | echo "" 29 | echo "Removing homebrew from Travis CI to avoid conflicts." 30 | curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall > ~/uninstall_homebrew 31 | chmod +x ~/uninstall_homebrew 32 | ~/uninstall_homebrew -fq 33 | rm ~/uninstall_homebrew 34 | 35 | 36 | install: 37 | # Install Miniconda. 38 | - | 39 | echo "" 40 | echo "Installing a fresh version of Miniconda." 41 | MINICONDA_URL="https://repo.continuum.io/miniconda" 42 | MINICONDA_FILE="Miniconda3-latest-MacOSX-x86_64.sh" 43 | curl -L -O "${MINICONDA_URL}/${MINICONDA_FILE}" 44 | bash $MINICONDA_FILE -b 45 | 46 | # Configure conda. 47 | - | 48 | echo "" 49 | echo "Configuring conda." 50 | source /Users/travis/miniconda3/bin/activate root 51 | conda config --remove channels defaults 52 | conda config --add channels defaults 53 | conda config --add channels conda-forge 54 | conda config --set show_channel_urls true 55 | conda install --yes --quiet conda-forge-build-setup 56 | source run_conda_forge_build_setup 57 | 58 | script: 59 | - conda build ./recipe 60 | 61 | - upload_or_check_non_existence ./recipe conda-forge --channel=main 62 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | About astroml 2 | ============= 3 | 4 | Home: http://www.astroML.org/ 5 | 6 | Package license: BSD 2-clause 7 | 8 | Feedstock license: BSD 3-Clause 9 | 10 | Summary: Tools for machine learning and data mining in Astronomy 11 | 12 | AstroML is a Python module for machine learning and data mining built on 13 | numpy, scipy, scikit-learn, and matplotlib, and distributed under the BSD 14 | license. It contains a growing library of statistical and machine learning 15 | routines for analyzing astronomical data in python, loaders for several 16 | open astronomical datasets, and a large suite of examples of analyzing and 17 | visualizing astronomical datasets. 18 | 19 | 20 | Current build status 21 | ==================== 22 | 23 | Linux: [![Circle CI](https://circleci.com/gh/conda-forge/astroml-feedstock.svg?style=shield)](https://circleci.com/gh/conda-forge/astroml-feedstock) 24 | OSX: [![TravisCI](https://travis-ci.org/conda-forge/astroml-feedstock.svg?branch=master)](https://travis-ci.org/conda-forge/astroml-feedstock) 25 | Windows: [![AppVeyor](https://ci.appveyor.com/api/projects/status/github/conda-forge/astroml-feedstock?svg=True)](https://ci.appveyor.com/project/conda-forge/astroml-feedstock/branch/master) 26 | 27 | Current release info 28 | ==================== 29 | Version: [![Anaconda-Server Badge](https://anaconda.org/conda-forge/astroml/badges/version.svg)](https://anaconda.org/conda-forge/astroml) 30 | Downloads: [![Anaconda-Server Badge](https://anaconda.org/conda-forge/astroml/badges/downloads.svg)](https://anaconda.org/conda-forge/astroml) 31 | 32 | Installing astroml 33 | ================== 34 | 35 | Installing `astroml` from the `conda-forge` channel can be achieved by adding `conda-forge` to your channels with: 36 | 37 | ``` 38 | conda config --add channels conda-forge 39 | ``` 40 | 41 | Once the `conda-forge` channel has been enabled, `astroml` can be installed with: 42 | 43 | ``` 44 | conda install astroml 45 | ``` 46 | 47 | It is possible to list all of the versions of `astroml` available on your platform with: 48 | 49 | ``` 50 | conda search astroml --channel conda-forge 51 | ``` 52 | 53 | 54 | About conda-forge 55 | ================= 56 | 57 | conda-forge is a community-led conda channel of installable packages. 58 | In order to provide high-quality builds, the process has been automated into the 59 | conda-forge GitHub organization. The conda-forge organization contains one repository 60 | for each of the installable packages. Such a repository is known as a *feedstock*. 61 | 62 | A feedstock is made up of a conda recipe (the instructions on what and how to build 63 | the package) and the necessary configurations for automatic building using freely 64 | available continuous integration services. Thanks to the awesome service provided by 65 | [CircleCI](https://circleci.com/), [AppVeyor](http://www.appveyor.com/) 66 | and [TravisCI](https://travis-ci.org/) it is possible to build and upload installable 67 | packages to the [conda-forge](https://anaconda.org/conda-forge) 68 | [Anaconda-Cloud](http://docs.anaconda.org/) channel for Linux, Windows and OSX respectively. 69 | 70 | To manage the continuous integration and simplify feedstock maintenance 71 | [conda-smithy](http://github.com/conda-forge/conda-smithy) has been developed. 72 | Using the ``conda-forge.yml`` within this repository, it is possible to re-render all of 73 | this feedstock's supporting files (e.g. the CI configuration files) with ``conda smithy rerender``. 74 | 75 | 76 | Terminology 77 | =========== 78 | 79 | **feedstock** - the conda recipe (raw material), supporting scripts and CI configuration. 80 | 81 | **conda-smithy** - the tool which helps orchestrate the feedstock. 82 | Its primary use is in the construction of the CI ``.yml`` files 83 | and simplify the management of *many* feedstocks. 84 | 85 | **conda-forge** - the place where the feedstock and smithy live and work to 86 | produce the finished article (built conda distributions) 87 | 88 | 89 | Updating astroml-feedstock 90 | ========================== 91 | 92 | If you would like to improve the astroml recipe or build a new 93 | package version, please fork this repository and submit a PR. Upon submission, 94 | your changes will be run on the appropriate platforms to give the reviewer an 95 | opportunity to confirm that the changes result in a successful build. Once 96 | merged, the recipe will be re-built and uploaded automatically to the 97 | `conda-forge` channel, whereupon the built conda packages will be available for 98 | everybody to install and use from the `conda-forge` channel. 99 | Note that all branches in the conda-forge/astroml-feedstock are 100 | immediately built and any created packages are uploaded, so PRs should be based 101 | on branches in forks and branches in the main repository should only be used to 102 | build distinct package versions. 103 | 104 | In order to produce a uniquely identifiable distribution: 105 | * If the version of a package **is not** being increased, please add or increase 106 | the [``build/number``](http://conda.pydata.org/docs/building/meta-yaml.html#build-number-and-string). 107 | * If the version of a package **is** being increased, please remember to return 108 | the [``build/number``](http://conda.pydata.org/docs/building/meta-yaml.html#build-number-and-string) 109 | back to 0. 110 | --------------------------------------------------------------------------------