Skip to content

Commit 034c761

Browse files
authored
Remove poetry.lock file (MIT-LCP#366)
1 parent 4dd89db commit 034c761

File tree

3 files changed

+13
-1063
lines changed

3 files changed

+13
-1063
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,6 @@ target/
7272

7373
# pyenv
7474
.python-version
75+
76+
# Poetry
77+
poetry.lock

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ poetry install
3838
# With dev dependencies
3939
pip install ".[dev]"
4040
poetry install -E dev
41+
42+
# Install the dependencies only
43+
poetry install -E dev --no-root
4144
```
4245

4346
See the [note](#package-management) below about dev dependencies.
@@ -46,9 +49,15 @@ See the [note](#package-management) below about dev dependencies.
4649

4750
We welcome community contributions in the form of pull requests. When contributing code, please ensure:
4851

49-
- [PEP8](https://www.python.org/dev/peps/pep-0008/) style guidelines are followed.
5052
- Documentation is provided. New functions and classes should have numpy/scipy style [docstrings](https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt).
5153
- Unit tests are written for new features that are not covered by [existing tests](https://github.com/MIT-LCP/wfdb-python/tree/master/tests).
54+
- The code style is consistent with the project's formating standards.
55+
56+
Run the formatter with:
57+
58+
```sh
59+
black .
60+
```
5261

5362
### Package Management
5463

0 commit comments

Comments
 (0)