Skip to content

Commit 4163618

Browse files
authored
Update readme and changelog relating to hatchling (#99)
1 parent aaf857d commit 4163618

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
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

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,18 @@ Installation using conda
6464

6565
To set up the project:
6666
```sh
67-
pip install --user poetry
68-
6967
git clone https://github.com/rr-/docstring_parser.git
7068
cd 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

7677
To run tests:
7778
```
78-
poetry run pytest
79+
source venv/bin/activate
80+
pytest
7981
```

0 commit comments

Comments
 (0)