From a0c518a2f8d55de56474b954953bf45f2ac6ba71 Mon Sep 17 00:00:00 2001 From: Aya Salama Date: Thu, 26 Sep 2019 17:36:51 +0200 Subject: [PATCH 1/2] Update README.md updating README.md with more explicit initialization steps --- README.md | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index edb8949..71eda32 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,23 @@ Release automation for pandas. - [ ] `TAG` in `Makefile` - [ ] `GH_USERNAME` in `Makefile` -If running for the first time be sure to initialize repos +## **If running for the first time:** + +- Create a conda enviroment based on environment.yml +```sh +conda env create -f environment.yml +``` +- Activate the environment +```sh +conda activate pandas-release +``` +- Be sure you have the following forked on your github + - https://github.com/pandas-dev/pandas-website + - https://github.com/conda-forge/pandas-feedstock + - https://github.com/MacPython/pandas-wheels + - https://github.com/pandas-dev/pandas + +- Be sure to initialize repos ```sh make init-repos @@ -15,8 +31,6 @@ make init-repos The `environment.yml` contains the local dependencies. You'll also need docker. -And fork pandas-feedstock and pandas-wheels to your GitHub account. - ``` # Update repos make update-repos From 1599aec264f425fd50d3a58f94046e6b20a75095 Mon Sep 17 00:00:00 2001 From: Aya Salama Date: Tue, 1 Oct 2019 17:09:03 +0200 Subject: [PATCH 2/2] editing initilization commands Implemented comments made on last PR --- README.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 71eda32..1391452 100644 --- a/README.md +++ b/README.md @@ -8,22 +8,23 @@ Release automation for pandas. ## **If running for the first time:** -- Create a conda enviroment based on environment.yml +- Create a conda enviroment based on environment.yml: ```sh -conda env create -f environment.yml +conda env create ``` -- Activate the environment +- Activate the environment: ```sh conda activate pandas-release ``` -- Be sure you have the following forked on your github +- Be sure you have the following forked on your github: - https://github.com/pandas-dev/pandas-website - https://github.com/conda-forge/pandas-feedstock - https://github.com/MacPython/pandas-wheels - - https://github.com/pandas-dev/pandas - -- Be sure to initialize repos - + - https://github.com/pandas-dev/pandas + +   + + - Be sure to initialize repos: ```sh make init-repos ```