-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
DOC: add source activate
for older versions of Anaconda and fix a typo
#19282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DOC: add source activate
for older versions of Anaconda and fix a typo
#19282
Conversation
doc/source/contributing.rst
Outdated
@@ -170,7 +170,7 @@ We'll now kick off a three-step process: | |||
|
|||
# Create and activate the build environment | |||
conda env create -f ci/environment-dev.yaml | |||
conda activate pandas-dev | |||
source activate pandas-dev |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note that conda activate
is not actually a typo, you just do this in newer versions of conda. can you update so both are here? (its ok that source activate is the primary).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I stand corrected-- looks like conda activate
was added around version 4.4.
36d1b0f
to
2c08412
Compare
source activate
for older versions of Anaconda and fix a typo
doc/source/contributing.rst
Outdated
@@ -171,6 +171,8 @@ We'll now kick off a three-step process: | |||
# Create and activate the build environment | |||
conda env create -f ci/environment-dev.yaml | |||
conda activate pandas-dev | |||
# or with older versions of Anaconda: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you add a blank line here, otherwise lgtm.
Codecov Report
@@ Coverage Diff @@
## master #19282 +/- ##
=======================================
Coverage 91.54% 91.54%
=======================================
Files 148 148
Lines 48870 48870
=======================================
Hits 44737 44737
Misses 4133 4133
Continue to review full report at Codecov.
|
In the contrib docs,
conda activate
should besource activate
, and there was also an extraneous period after the "continuous integration" heading.