File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed
Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 1+ # 0.17 (2025-??-??)
2+
3+ - General: Replace poetry with hatchling (thanks to @LecrisUT )
4+ - General: Drop support for Python 3.6 and 3.7 (thanks to @LecrisUT )
5+
16# 0.16 (2024-03-15)
27
38- Parser: add a new property, ` description ` , that combines short and long
Original file line number Diff line number Diff line change @@ -64,16 +64,18 @@ Installation using conda
6464
6565To set up the project:
6666``` sh
67- pip install --user poetry
68-
6967git clone https://github.com/rr-/docstring_parser.git
7068cd docstring_parser
7169
72- poetry install
73- poetry run pre-commit install
70+ python -m venv venv # create environment
71+ source venv/bin/activate # activate environment
72+
73+ pip install -e " .[dev]" # install as editable
74+ pre-commit install # make sure pre-commit is setup
7475```
7576
7677To run tests:
7778```
78- poetry run pytest
79+ source venv/bin/activate
80+ pytest
7981```
You can’t perform that action at this time.
0 commit comments