├── .gitignore ├── .gitattributes ├── ci_support ├── fast_finish_ci_pr_build.sh ├── checkout_merge_commit.sh └── run_docker_build.sh ├── circle.yml ├── conda-forge.yml ├── LICENSE ├── recipe └── meta.yaml ├── appveyor.yml ├── .travis.yml └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | meta.yaml text eol=lf 4 | build.sh text eol=lf 5 | bld.bat text eol=crlf 6 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- 1 | checkout: 2 | post: 3 | - ./ci_support/fast_finish_ci_pr_build.sh 4 | - ./ci_support/checkout_merge_commit.sh 5 | 6 | machine: 7 | services: 8 | - docker 9 | 10 | dependencies: 11 | # Note, we used to use the naive caching of docker images, but found that it was quicker 12 | # just to pull each time. #rollondockercaching 13 | override: 14 | - docker pull condaforge/linux-anvil 15 | 16 | test: 17 | override: 18 | # Run, test and (if we have a BINSTAR_TOKEN) upload the distributions. 19 | - ./ci_support/run_docker_build.sh 20 | -------------------------------------------------------------------------------- /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: OKILeeyJXjnYenD7ieIUMLN6AZaBCW3eNpbv+ncR1cZcedBsf7HHWtAJzHFocO2cOVgO4AhyHPESSo3xjdOnS5V3gcewDQ5Bfy4v7SOHzp+KCn0Q7XkxvPoMerHRxvbnnuw+YdlU+4R+6AGio4SyKua9wNN9ppX7q3x9sZtfsJ4rqP8SIHg43US5E2kTISUjrnf/Nyo5QhOWJ7hGswlr3+6kGYeB692wCcXDGAcMI/TYv+TaZoFQOjZotUR1FZoqT1svSReHwefLh5gBWMC0WJ6AmI38xcJ9OBVFoYG6GmuJbYHnUfSKZQ3DxvbBWpi+DjHrj7mQgMOpyUDzWuFv+0qcHW8tuGtLnfVbv2nEKePQ3aQ0ZSfx9wHxhdpDoRGm2ghEWnS2SEwzcCIwpzkvqEf8pGaiYTJ+uQLdEB7Yt7ElSRpc3nuwAjR+A9uEA0HM4xHhBT5fcTdbaySS5ZPPshLsgk4LI4IHjTvPCtgcqKl+63JHOUskJEt9zKZTvcdMUqMvfbPeT4ZF8ZvdVapnocOpwfIau7Yyr53bZvexvjKV6iD4h3hc2N0hUT0ngygrafPOXKKY7Q/K988s0bagUcu1EcQnvlOrXUujNapy/SFg65RaVYZPu/gdaGEtHvZZOcdKwRnxfRUMfJz+vMteLzQCd3vOl00H9D9g2wRX70A= 4 | appveyor: 5 | secure: 6 | BINSTAR_TOKEN: MP4hZYylDyUWEsrt3u3cod2sbFeRwUziH02mvQOdbjsTO/l1yIxDkP/76rSIjcGC 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 = "ccdproc" %} 2 | {% set version = "1.2.0" %} 3 | {% set hash_type = "sha256" %} 4 | {% set hash_value = "d96fcb6c45c2d060ef915380ed75d230693befa3f9427fdeed0ec8463abfac38" %} 5 | 6 | package: 7 | version: '{{ version }}' 8 | name: '{{ name|lower }}' 9 | 10 | source: 11 | url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz 12 | '{{ hash_type }}': '{{ hash_value }}' 13 | fn: '{{ name }}-{{ version }}.tar.gz' 14 | 15 | build: 16 | number: 0 17 | script: python setup.py install --offline --single-version-externally-managed --record=record.txt 18 | 19 | requirements: 20 | build: 21 | - python 22 | - setuptools 23 | run: 24 | - python 25 | - astropy >=1.0 26 | - numpy 27 | - scipy 28 | - astroscrappy 29 | - reproject 30 | - scikit-image 31 | 32 | test: 33 | imports: 34 | - ccdproc 35 | - ccdproc.utils 36 | 37 | about: 38 | home: http://ccdproc.readthedocs.io/ 39 | license: BSD 3-clause 40 | license_family: BSD 41 | license_file: licenses/LICENSE.rst 42 | summary: Astropy affiliated package for reducing optical/IR CCD data 43 | description: | 44 | Ccdproc is is an affiliated package for the AstroPy package for basic data 45 | reductions of CCD images. The ccdproc package provides many of the 46 | necessary tools for processing of ccd images built on a framework to 47 | provide error propagation and bad pixel tracking throughout the reduction 48 | process. 49 | doc_url: http://ccdproc.readthedocs.io/ 50 | dev_url: https://github.com/astropy/ccdproc 51 | 52 | extra: 53 | recipe-maintainers: 54 | - mwcraig 55 | - crawfordsm 56 | - MSeifert04 57 | - bsipocz 58 | -------------------------------------------------------------------------------- /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: MP4hZYylDyUWEsrt3u3cod2sbFeRwUziH02mvQOdbjsTO/l1yIxDkP/76rSIjcGC 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: "OKILeeyJXjnYenD7ieIUMLN6AZaBCW3eNpbv+ncR1cZcedBsf7HHWtAJzHFocO2cOVgO4AhyHPESSo3xjdOnS5V3gcewDQ5Bfy4v7SOHzp+KCn0Q7XkxvPoMerHRxvbnnuw+YdlU+4R+6AGio4SyKua9wNN9ppX7q3x9sZtfsJ4rqP8SIHg43US5E2kTISUjrnf/Nyo5QhOWJ7hGswlr3+6kGYeB692wCcXDGAcMI/TYv+TaZoFQOjZotUR1FZoqT1svSReHwefLh5gBWMC0WJ6AmI38xcJ9OBVFoYG6GmuJbYHnUfSKZQ3DxvbBWpi+DjHrj7mQgMOpyUDzWuFv+0qcHW8tuGtLnfVbv2nEKePQ3aQ0ZSfx9wHxhdpDoRGm2ghEWnS2SEwzcCIwpzkvqEf8pGaiYTJ+uQLdEB7Yt7ElSRpc3nuwAjR+A9uEA0HM4xHhBT5fcTdbaySS5ZPPshLsgk4LI4IHjTvPCtgcqKl+63JHOUskJEt9zKZTvcdMUqMvfbPeT4ZF8ZvdVapnocOpwfIau7Yyr53bZvexvjKV6iD4h3hc2N0hUT0ngygrafPOXKKY7Q/K988s0bagUcu1EcQnvlOrXUujNapy/SFg65RaVYZPu/gdaGEtHvZZOcdKwRnxfRUMfJz+vMteLzQCd3vOl00H9D9g2wRX70A=" 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 | -------------------------------------------------------------------------------- /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 | -a stdin -a stdout -a stderr \ 44 | condaforge/linux-anvil \ 45 | bash || exit 1 46 | 47 | set -e 48 | set +x 49 | export BINSTAR_TOKEN=${BINSTAR_TOKEN} 50 | set -x 51 | export PYTHONUNBUFFERED=1 52 | 53 | echo "$config" > ~/.condarc 54 | # A lock sometimes occurs with incomplete builds. The lock file is stored in build_artefacts. 55 | conda clean --lock 56 | 57 | conda install --yes --quiet conda-forge-build-setup 58 | source run_conda_forge_build_setup 59 | 60 | # Embarking on 3 case(s). 61 | set -x 62 | export CONDA_PY=27 63 | set +x 64 | conda build /recipe_root --quiet || exit 1 65 | upload_or_check_non_existence /recipe_root conda-forge --channel=main || exit 1 66 | 67 | set -x 68 | export CONDA_PY=35 69 | set +x 70 | conda build /recipe_root --quiet || exit 1 71 | upload_or_check_non_existence /recipe_root conda-forge --channel=main || exit 1 72 | 73 | set -x 74 | export CONDA_PY=36 75 | set +x 76 | conda build /recipe_root --quiet || exit 1 77 | upload_or_check_non_existence /recipe_root conda-forge --channel=main || exit 1 78 | touch /feedstock_root/build_artefacts/conda-forge-build-done 79 | EOF 80 | 81 | # double-check that the build got to the end 82 | # see https://github.com/conda-forge/conda-smithy/pull/337 83 | # for a possible fix 84 | set -x 85 | test -f "$FEEDSTOCK_ROOT/build_artefacts/conda-forge-build-done" || exit 1 86 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | About ccdproc 2 | ============= 3 | 4 | Home: http://ccdproc.readthedocs.io/ 5 | 6 | Package license: BSD 3-clause 7 | 8 | Feedstock license: BSD 3-Clause 9 | 10 | Summary: Astropy affiliated package for reducing optical/IR CCD data 11 | 12 | Ccdproc is is an affiliated package for the AstroPy package for basic data 13 | reductions of CCD images. The ccdproc package provides many of the 14 | necessary tools for processing of ccd images built on a framework to 15 | provide error propagation and bad pixel tracking throughout the reduction 16 | process. 17 | 18 | 19 | Current build status 20 | ==================== 21 | 22 | Linux: [![Circle CI](https://circleci.com/gh/conda-forge/ccdproc-feedstock.svg?style=shield)](https://circleci.com/gh/conda-forge/ccdproc-feedstock) 23 | OSX: [![TravisCI](https://travis-ci.org/conda-forge/ccdproc-feedstock.svg?branch=master)](https://travis-ci.org/conda-forge/ccdproc-feedstock) 24 | Windows: [![AppVeyor](https://ci.appveyor.com/api/projects/status/github/conda-forge/ccdproc-feedstock?svg=True)](https://ci.appveyor.com/project/conda-forge/ccdproc-feedstock/branch/master) 25 | 26 | Current release info 27 | ==================== 28 | Version: [![Anaconda-Server Badge](https://anaconda.org/conda-forge/ccdproc/badges/version.svg)](https://anaconda.org/conda-forge/ccdproc) 29 | Downloads: [![Anaconda-Server Badge](https://anaconda.org/conda-forge/ccdproc/badges/downloads.svg)](https://anaconda.org/conda-forge/ccdproc) 30 | 31 | Installing ccdproc 32 | ================== 33 | 34 | Installing `ccdproc` from the `conda-forge` channel can be achieved by adding `conda-forge` to your channels with: 35 | 36 | ``` 37 | conda config --add channels conda-forge 38 | ``` 39 | 40 | Once the `conda-forge` channel has been enabled, `ccdproc` can be installed with: 41 | 42 | ``` 43 | conda install ccdproc 44 | ``` 45 | 46 | It is possible to list all of the versions of `ccdproc` available on your platform with: 47 | 48 | ``` 49 | conda search ccdproc --channel conda-forge 50 | ``` 51 | 52 | 53 | About conda-forge 54 | ================= 55 | 56 | conda-forge is a community-led conda channel of installable packages. 57 | In order to provide high-quality builds, the process has been automated into the 58 | conda-forge GitHub organization. The conda-forge organization contains one repository 59 | for each of the installable packages. Such a repository is known as a *feedstock*. 60 | 61 | A feedstock is made up of a conda recipe (the instructions on what and how to build 62 | the package) and the necessary configurations for automatic building using freely 63 | available continuous integration services. Thanks to the awesome service provided by 64 | [CircleCI](https://circleci.com/), [AppVeyor](http://www.appveyor.com/) 65 | and [TravisCI](https://travis-ci.org/) it is possible to build and upload installable 66 | packages to the [conda-forge](https://anaconda.org/conda-forge) 67 | [Anaconda-Cloud](http://docs.anaconda.org/) channel for Linux, Windows and OSX respectively. 68 | 69 | To manage the continuous integration and simplify feedstock maintenance 70 | [conda-smithy](http://github.com/conda-forge/conda-smithy) has been developed. 71 | Using the ``conda-forge.yml`` within this repository, it is possible to re-render all of 72 | this feedstock's supporting files (e.g. the CI configuration files) with ``conda smithy rerender``. 73 | 74 | 75 | Terminology 76 | =========== 77 | 78 | **feedstock** - the conda recipe (raw material), supporting scripts and CI configuration. 79 | 80 | **conda-smithy** - the tool which helps orchestrate the feedstock. 81 | Its primary use is in the construction of the CI ``.yml`` files 82 | and simplify the management of *many* feedstocks. 83 | 84 | **conda-forge** - the place where the feedstock and smithy live and work to 85 | produce the finished article (built conda distributions) 86 | 87 | 88 | Updating ccdproc-feedstock 89 | ========================== 90 | 91 | If you would like to improve the ccdproc recipe or build a new 92 | package version, please fork this repository and submit a PR. Upon submission, 93 | your changes will be run on the appropriate platforms to give the reviewer an 94 | opportunity to confirm that the changes result in a successful build. Once 95 | merged, the recipe will be re-built and uploaded automatically to the 96 | `conda-forge` channel, whereupon the built conda packages will be available for 97 | everybody to install and use from the `conda-forge` channel. 98 | Note that all branches in the conda-forge/ccdproc-feedstock are 99 | immediately built and any created packages are uploaded, so PRs should be based 100 | on branches in forks and branches in the main repository should only be used to 101 | build distinct package versions. 102 | 103 | In order to produce a uniquely identifiable distribution: 104 | * If the version of a package **is not** being increased, please add or increase 105 | the [``build/number``](http://conda.pydata.org/docs/building/meta-yaml.html#build-number-and-string). 106 | * If the version of a package **is** being increased, please remember to return 107 | the [``build/number``](http://conda.pydata.org/docs/building/meta-yaml.html#build-number-and-string) 108 | back to 0. 109 | --------------------------------------------------------------------------------