Skip to content

Commit

Permalink
Merge pull request #53 from UBC-MDS/fix/feedback-address
Browse files Browse the repository at this point in the history
Fix/feedback address
  • Loading branch information
siddart-1 authored Feb 4, 2025
2 parents a5524f8 + dd11b52 commit ceddab8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,15 @@ from pysorting import quick_sort, bubble_sort, shell_sort, insertion_sort
bubble_sort([4, 2, 7, 1, 3], ascending = False)
```

For more examples on usage of the different functions,you can check out this [Example NoteBook](https://pysorting.readthedocs.io/en/latest/example.html)
For more examples on usage of the different functions, you can check out this [Example NoteBook](https://pysorting.readthedocs.io/en/latest/example.html)

## Running Tests

To run tests and check code coverage, use the following command in the project root:

```bash
poetry run pytest --cov=pysorting
```

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "pysorting"
version = "0.0.4"
description = "a package to aid user in implementing various sorting algorithms"
authors = ["Group 27"]
authors = ["Chukwunonso Ebele-muolokwu", "Marek Boulerice", "Shashank Hosahalli Shivamurthy", "Siddarth Subrahmanian"]
license = "MIT"
readme = "README.md"

Expand Down

0 comments on commit ceddab8

Please sign in to comment.