Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 1.6 KB

README.md

File metadata and controls

53 lines (35 loc) · 1.6 KB

Getting started with pandas dev

This is a repo to bootstrap you to get going with pandas development

This helps setting up development environment quickly.

History: built for onboarding at Pycon 2018 Canada sprint

Dependency

This requires you to have Docker installed. We relie on Docker to keep our environment homogenous between developers.

Getting started

1. Setting up your pandas source folder

Create a fork of the pandas repo following this instructions

Then you can start pulling it into your repo.

git clone [email protected]:<your user name>/pandas.git
git remote add upstream [email protected]:pandas-dev/pandas.git

See adding upstream and merge for understanding the upstream setup.

2. Building the docker image

make build
make run
# This will put you into the shell of the image.

Once you are in the docker image, run:

$ conda activate pandas-dev
$ python scripts/validate_docstrings.py pandas.DataFrame.mean

Some development notes

Docs contributing guideline