changes to make development more friendly on MacOS

This commit is contained in:
x0pherl 2025-11-07 21:40:11 -05:00 committed by Roger Maitland
parent e92255cefc
commit 1095f3ee4c
2 changed files with 5 additions and 2 deletions

3
.gitignore vendored
View file

@ -41,3 +41,6 @@ venv.bak/
# Profiling debris.
prof/
# MacOS cruft
.DS_Store

View file

@ -3,8 +3,8 @@ tests, ensure they build and pass, and ensure that `pylint` and `mypy`
are happy with your code.
- Install `pip` following their [documentation](https://pip.pypa.io/en/stable/installation/).
- Install development dependencies: `pip install -e .[development]`
- Install docs dependencies: `pip install -e .[docs]`
- Install development dependencies: `pip install -e ".[development]"`
- Install docs dependencies: `pip install -e ".[docs]"`
- Install `build123d` in editable mode from current dir: `pip install -e .`
- Run tests with: `python -m pytest -n auto`
- Build docs with: `cd docs && make html`