Skip to content
This repository has been archived by the owner on Jun 12, 2023. It is now read-only.

Update README.md #14

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You don't need the -f environment.yml if the name of the file is environment.yml, since it's conda's default. Feel free to leave it if you prefer to be explicit.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't know that was the default, good to know.

```
- Activate the environment
```sh
conda activate pandas-release
Aya-S marked this conversation as resolved.
Show resolved Hide resolved
```
- 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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Small thing, but may be a colon at the end to show that you're talking about the next command (thought initially you were talking about the previous list of repos)


```sh
make init-repos
Expand All @@ -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
Expand Down