Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 849 Bytes

DEVELOPMENT.md

File metadata and controls

41 lines (27 loc) · 849 Bytes

Development documentation

This package has two active branches:

  • mainline -- For active development. This branch is not intended to be consumed by other packages. Any commit to this branch may break APIs, dependencies, and so on, and thus break any consumer without notice.
  • release -- The official release of the package intended for consumers. Any breaking releases will be accompanied with an increase to this package's interface version.

Build / Test

Build the package

hatch build

Run tests

hatch run test

Run linting

hatch run lint

Run formatting

hatch run fmt

Run tests for all supported Python versions

hatch run all:test

Relevant links