From 5fbea5b2df29bffe3f7d69762a3f873062b6aa2c Mon Sep 17 00:00:00 2001 From: Rachel Date: Tue, 30 Jul 2019 17:21:25 -0500 Subject: [PATCH] Added channel RSS feed info --- docs/source/user-guide/concepts/channels.rst | 44 +++++++++++++++++++ .../user-guide/concepts/conda-performance.rst | 10 ++--- .../user-guide/concepts/environments.rst | 4 +- 3 files changed, 51 insertions(+), 7 deletions(-) diff --git a/docs/source/user-guide/concepts/channels.rst b/docs/source/user-guide/concepts/channels.rst index d951faf10ca..b89cdfd5c80 100644 --- a/docs/source/user-guide/concepts/channels.rst +++ b/docs/source/user-guide/concepts/channels.rst @@ -57,3 +57,47 @@ Priority decreases from left to right - the first argument is higher priority th Learn more about :doc:`managing channels <../tasks/manage-channels>`. +.. _rss-feed: + +Conda clone channel RSS feed +============================ + +We offer a RSS feed that represents all the things +that have been cloned by the channel clone and are +now available behind the CDN (content delivery network). +The RSS feed shows what has happened on a rolling, +two-week time frame and is useful for seeing where +packages are or if a sync has been run. + +Let's look at the `conda-forge channel RSS feed `_ +as an example. + +In that feed, it will tell you every time that it runs a sync. +The feed includes other entries for packages that were added or +removed. Each entry is formatted to show the subdirectory +the package is from, the action that was taken (addition or removal), +and the name of the package. Everything has a publishing date, +per standard RSS practice. + +.. code-block:: xml + + + + conda-forge updates + https://anaconda.org + Updates in the last two weeks + en + Copyright 2019, Anaconda, Inc. + 30 Jul 2019 19:45:47 UTC + + running sync + 26 Jul 2019 19:26:36 UTC + + + linux-64:add:jupyterlab-1.0.4-py36_0.tar.bz2 + 26 Jul 2019 19:26:36 UTC + + + linux-64:add:jupyterlab-1.0.4-py37_0.tar.bz2 + 26 Jul 2019 19:26:36 UTC + diff --git a/docs/source/user-guide/concepts/conda-performance.rst b/docs/source/user-guide/concepts/conda-performance.rst index 5a3ed113db5..eff30c924a6 100644 --- a/docs/source/user-guide/concepts/conda-performance.rst +++ b/docs/source/user-guide/concepts/conda-performance.rst @@ -98,10 +98,10 @@ process. Listing a version and build string for each of your specs can dramatically reduce the number of packages that are considered when solving so that the SAT doesn’t have as much work to do. - Reducing the index: - * Reduces unnecessary input into generating solver clauses. - * Reduces solve complexity. - * Prefers newer packages that apply constraints. +Reducing the index: + * Reduces unnecessary input into generating solver clauses. + * Reduces solve complexity. + * Prefers newer packages that apply constraints. - Read more on `Understanding and Improving Conda's Performance +Read more on `Understanding and Improving Conda's Performance `_. diff --git a/docs/source/user-guide/concepts/environments.rst b/docs/source/user-guide/concepts/environments.rst index a90c647d1e3..0a51ec3019a 100644 --- a/docs/source/user-guide/concepts/environments.rst +++ b/docs/source/user-guide/concepts/environments.rst @@ -100,7 +100,7 @@ Some other traits are: | Why use venv-based virtual environments -=================================== +======================================= - You prefer their workflow or spec formats - You prefer to use the system Python and libraries - Your project maintainers only publish to PyPI, and you prefer packages that come more directly from the project maintainers, rather than someone else providing builds based on the same code @@ -118,7 +118,7 @@ Workflow differentiators ======================== Some questions to consider as you determine your preferred -workflow and virtual environment: +workflow and virtual environment: - Is your environment shared across multiple code projects? - Does your environment live alongside your code or in a separate place?