Skip to content

Latest commit

 

History

History
66 lines (42 loc) · 1.28 KB

CONTRIBUTING.md

File metadata and controls

66 lines (42 loc) · 1.28 KB

Contributing

Contributin code the is simple as it is a pure Python library. Please read the following instructions:

Prerequisites

To start working on the project:

  • Python 3.8+

Enviroment

For development orchestration we use Hatch for Python (defined in pyproject.toml):

pip3 install hatch

Python

Before starting with the project we recommend configuring hatch. The following line will ensure that all the virtual environments will be stored in the .python directory in project root:

hatch config set 'dirs.env.virtual' '.python'
hatch shell # Enter the venv

Now you can setup you IDE to use a proper Python path:

.python/ckanext-datapackage/bin/python

Documentation

Documentation is written with Mkdocs (defined in mkdocs.yaml). The source articles are in the docs directory. To start a live-reload server:

hatch run docs

Building the docs:

hatch run docs-build

Testing

To run all the checks on the codebase:

hatch run test

Releasing

You need to have a main branch push permissions

Update the version and initiate the release script:

# Ensure you're on the up-to-date `main` branch
hatch version <major|minor|micro>
hatch run release