Skip to content

Commit 0919192

Browse files
chenghleelwasser
authored andcommitted
Fix usage of "Anaconda Cloud" in various contexts
The site that hosts community-built packages/channels (e.g., conda-forge & bioconda) packages is officially called "anaconda.org", not "Anaconda Cloud". (The latter is a different Anaconda Inc product.)
1 parent 882208d commit 0919192

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

documentation/repository-files/readme-file-best-practices.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sees before they install your package.
66

77
The README.md file is the landing page of:
88

9-
* Your package as it appears on a repository site such as PyPI or Anaconda
9+
* Your package as it appears on a repository site such as PyPI or Anaconda.org
1010
* Your package's GitHub repository
1111

1212
Your README.md file is also used as a measure of package and community
@@ -68,7 +68,7 @@ README file for others to quickly browse.
6868

6969
Some badges that you might consider adding to your README file include:
7070

71-
* Current version of the package on PyPI / Anaconda Cloud
71+
* Current version of the package on PyPI / Anaconda.org
7272

7373
Example: [![PyPI version shields.io](https://img.shields.io/pypi/v/pandera.svg)](https://pypi.org/project/pandera/)
7474

@@ -114,7 +114,7 @@ file.
114114
### ✔️ Installation instructions
115115

116116
Include instructions for installing your package. If you have published
117-
the package on both PyPI and Anaconda Cloud be sure to include instructions for both.
117+
the package on both PyPI and Anaconda.org, be sure to include instructions for both.
118118

119119
### ✔️ Document any additional setup required
120120

package-structure-code/publish-python-package-pypi-conda.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Publishing Your Package In A Community Repository: PyPI or Anaconda Cloud
1+
# Publishing Your Package In A Community Repository: PyPI or Anaconda.org
22

33
<!--todo: add as resource https://docs.conda.io/projects/conda/en/latest/glossary.html -->
44

55
pyOpenSci requires that your package has an distribution that can be installed
66
from a public community repository such as PyPI or a conda channel such as
7-
`bioconda` or `conda-forge` in the Anaconda cloud.
7+
`bioconda` or `conda-forge` in the Anaconda.org.
88

99
Below you will learn more about the various publishing options for your Python
1010
package.
@@ -13,7 +13,7 @@ package.
1313

1414
* Installing packages in the same environment using both pip and conda can
1515
lead to package conflicts.
16-
* To minimize conflicts for users who may be using conda (or pip) to manage local environments, consider publishing your package to both PyPI and the conda-forge channel of the Anaconda Cloud.
16+
* To minimize conflicts for users who may be using conda (or pip) to manage local environments, consider publishing your package to both PyPI and the conda-forge channel on Anaconda.org.
1717

1818
Below you will learn more specifics about the differences between PyPI and conda publishing of your Python package.
1919
:::
@@ -57,13 +57,13 @@ your package.
5757
:::
5858

5959
(about-conda)=
60-
## What is Anaconda Cloud and conda?
60+
## What is conda and Anaconda.org?
6161

6262
conda is an open source package and environment management tool.
63-
conda can be used to install tools from the [Anaconda Cloud
63+
conda can be used to install tools from the [Anaconda
6464
repository](https://repo.anaconda.com/).
6565

66-
Anaconda cloud (anaconda.org) contains public and private repositories for
66+
Anaconda.org contains public and private repositories for
6767
packages. These repositories are known as channels (discussed below).
6868

6969
:::{admonition} A brief history of conda's evolution
@@ -95,12 +95,12 @@ channels. The conda package manager can install packages from different channels
9595
There are several core public channels that most people use to install
9696
packages using conda, including:
9797

98-
- **defaults:** this is a channel managed by Anaconda. It is the version of the Python packages that you will install if you install the Anaconda Distribution. Anaconda decides what packages live on the default channel.
98+
- **defaults:** this is a channel managed by Anaconda. It is the version of the Python packages that you will install if you install the Anaconda Distribution. Anaconda (the company) decides what packages live on the `defaults` channel.
9999
- [**conda-forge:**](https://anaconda.org/conda-forge) this is a community-driven channel that focuses on scientific packages. This channel is ideal for tools that support geospatial data. Anyone can publish a package to this channel.
100100
- [**bioconda**](https://anaconda.org/bioconda): this channel focuses on biomedical tools.
101101

102102
**conda-forge** emerged as many of the scientific packages did not
103-
exist in the default Anaconda cloud channel.
103+
exist in the `defaults` Anaconda channel.
104104

105105
:::{figure-md} pypi-conda-channels
106106

package-structure-code/python-package-structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ If your package tests require data, we suggest that you do NOT include that
147147
data within your package structure. We will discuss this in more detail in a
148148
tutorial. Include data in your package structure increases the size of your
149149
distribution files. This places a maintenance toll on repositories like PyPI and
150-
anaconda cloud that have to deal with thousands of package uploads.
150+
Anaconda.org that have to deal with thousands of package uploads.
151151
```
152152

153153
## About the flat Python package layout

tutorials/publish-conda-forge.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ Once you have published both package distributions (the source distribution and
3838
## What is conda-forge?
3939

4040
conda is an open source package and environment management tool that
41-
can be used to install tools from the different channels within the Anaconda Cloud repository.
41+
can be used to install tools from the different channels on Anaconda.org.
4242

43-
You can think about a channel as a specific location where a group of packages are stored and can be installed from using a command such as `conda install packagename`. In the case of the Anaconda cloud channels, some of these channels such as the default channel, is managed by Anaconda (the company). Only Anaconda can decide what packages are available in the default channel. However, the conda-forge (and bioconda) channel are community-managed channels.
43+
You can think about a channel as a specific location where a group of packages are stored and can be installed from using a command such as `conda install packagename`. In the case of conda channels, some of these channels such as the `defaults` channel, is managed by Anaconda (the company). Only Anaconda can decide what packages are available in the `defaults` channel. However, the conda-forge (and bioconda) channel are community-managed channels.
4444
Anyone can submit a package to these channels however they must pass a technical review in the [staged-recipes GitHub repository](https://github.com/conda-forge/staged-recipes) to be published.
4545

4646
[Learn more about conda channels here.](#about-conda)

0 commit comments

Comments
 (0)