* update pre-commit hooks * add devcontainer * show url in publish environment * update actions versions * separate typing job * use dependabot grouped updates ignore upload/download-artifact until slsa updates * use sphinx.ext.extlinks instead of sphinx-issues * update editorconfig * update gitignore * update .readthedocs.yaml * license is txt, readme is md * use pyproject.toml and flit_core instead of setuptools add typed classifier add pyright config simplify urls * tox builds docs in place * add tox env to update all dev dependencies * update issue and pr templates * simplify matrix
8 lines
165 B
Bash
Executable File
8 lines
165 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
python3 -m venv --upgrade-deps .venv
|
|
. .venv/bin/activate
|
|
pip install -r requirements/dev.txt
|
|
pip install -e .
|
|
pre-commit install --install-hooks
|