https://github.com/lycantropos/quickselect
Selection algorithms implementation
https://github.com/lycantropos/quickselect
quickselect
Last synced: 2 months ago
JSON representation
Selection algorithms implementation
- Host: GitHub
- URL: https://github.com/lycantropos/quickselect
- Owner: lycantropos
- License: mit
- Created: 2020-04-20T20:01:26.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2025-02-03T16:00:09.000Z (5 months ago)
- Last Synced: 2025-04-15T16:11:30.785Z (3 months ago)
- Topics: quickselect
- Language: Python
- Homepage: https://quickselect.rtfd.io
- Size: 73.2 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
quickselect
===========[](https://github.com/lycantropos/quickselect/actions/workflows/ci.yml "Github Actions")
[](https://codecov.io/gh/lycantropos/quickselect "Codecov")
[](https://github.com/lycantropos/quickselect/blob/master/LICENSE "License")
[](https://badge.fury.io/py/quickselect "PyPI")In what follows `python` is an alias for `python3.8` or `pypy3.8`
or any later version (`python3.9`, `pypy3.9` and so on).Installation
------------Install the latest `pip` & `setuptools` packages versions
```bash
python -m pip install --upgrade pip setuptools
```### User
Download and install the latest stable version from `PyPI` repository
```bash
python -m pip install --upgrade quickselect
```### Developer
Download the latest version from `GitHub` repository
```bash
git clone https://github.com/lycantropos/quickselect.git
cd quickselect
```Install
```bash
python -m pip install -e .
```Development
-----------### Bumping version
#### Preparation
Install
[bump2version](https://github.com/c4urself/bump2version#installation).#### Pre-release
Choose which version number category to bump following [semver
specification](http://semver.org/).Test bumping version
```bash
bump2version --dry-run --verbose $CATEGORY
```where `$CATEGORY` is the target version number category name, possible
values are `patch`/`minor`/`major`.Bump version
```bash
bump2version --verbose $CATEGORY
```This will set version to `major.minor.patch-alpha`.
#### Release
Test bumping version
```bash
bump2version --dry-run --verbose release
```Bump version
```bash
bump2version --verbose release
```This will set version to `major.minor.patch`.
### Running tests
Install with dependencies
```bash
python -m pip install -e .[tests]
```Plain
```bash
pytest
```Inside `Docker` container:
- with `CPython`
```bash
docker-compose --file docker-compose.cpython.yml up
```
- with `PyPy`
```bash
docker-compose --file docker-compose.pypy.yml up
````Bash` script:
- with `CPython`
```bash
./run-tests.sh
```
or
```bash
./run-tests.sh cpython
```- with `PyPy`
```bash
./run-tests.sh pypy
````PowerShell` script:
- with `CPython`
```powershell
.\run-tests.ps1
```
or
```powershell
.\run-tests.ps1 cpython
```
- with `PyPy`
```powershell
.\run-tests.ps1 pypy
```