Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 782 Bytes

CONTRIBUTING.md

File metadata and controls

36 lines (27 loc) · 782 Bytes

Contribution Guidelines

Thank you for your interest in contributing to pandas-pyarrow.

Prerequisites

Before you start, make sure you have poetry installed on your machine. You can install it with this command:

pip install poetry

Also, make sure you have forked the repository and cloned your fork to your local machine.

Setup

To set up the project, navigate to the project directory and run these commands:

Install the project dependencies

poetry install

Install the pre-commit hooks

poetry run pre-commit install

Testing and Code Checking

To run the tests, use this command:

poetry run pytest

To check the code style and formatting, use this command:

poetry run pre-commit run --all-files