Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 514 Bytes

File metadata and controls

30 lines (20 loc) · 514 Bytes

Contributing

Thanks for helping improve vortex2d!

Dev Environment

# Install Poetry if needed
curl -sSL https://install.python-poetry.org | python3 -

# Create and activate env
poetry install --with dev,plot

Quality Gates

poetry run ruff check .
poetry run mypy src
poetry run pytest

Commit Style

  • Conventional Commits are recommended.
  • Run pre-commit install once; hooks will lint on commit.

Releasing

  • Bump the version in pyproject.toml and create a tag.