summaryrefslogtreecommitdiff
path: root/source/contributing.rst
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2016-04-28 10:36:10 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2016-04-28 10:36:10 -0400
commitc48866fdc1dc268298505c3405ed1406bdf6404e (patch)
tree18690c7e3c8917c1a204acdc5172ec8c8dbd7438 /source/contributing.rst
parentaa84872db03a10f3e428ff73b9b250efec22ce8c (diff)
downloadastroconda-c48866fdc1dc268298505c3405ed1406bdf6404e.tar.gz
Corrected invalid argument
Diffstat (limited to 'source/contributing.rst')
-rw-r--r--source/contributing.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/contributing.rst b/source/contributing.rst
index 6e5a3ff..7e3affd 100644
--- a/source/contributing.rst
+++ b/source/contributing.rst
@@ -277,13 +277,13 @@ Python 3.5:
.. code-block:: sh
- conda-build -c http://ssb.stsci.edu/astroconda --skip-existing python=3.5 sympy
+ conda-build -c http://ssb.stsci.edu/astroconda --skip-existing --python=3.5 sympy
That's probably a bit more involved than you thought. Let's break it down. We issue ``-c [URL]`` which instructs the build to utilize
the AstroConda channel while checking for package dependencies (i.e. the recipe's ``requirements`` section). Secondly, we issue
``--skip-existing`` to prevent ``conda-build`` from rebuilding dependencies discovered in the local astroconda-contrib directory.
That is to say, if a package defined as a requirement exists remotely, it will then download and install it, rather than rebuild it from scratch.
-``python=`` is self-explanatory, and the final argument is the name of the recipe(s) we intend to build.
+``--python=`` is self-explanatory, and the final argument is the name of the recipe(s) we intend to build.
At this point, if the build was successful, our Conda package (a bzipped tarball) called ``sympy-1.0-py35_0.tar.bz2`` is emitted to ``/path/to/anaconda/conda-bld/[os-arch]/``.
This directory is a local Conda package repository.