Skip to content

Commit ea0a55e

Browse files
committed
downgraded ortools package
1 parent 656079f commit ea0a55e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
python -m pip install --upgrade pip
2929
python -m pip install flake8 pytest pytest-benchmark
3030
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
31-
pip install lap scipy "ortools<9.5" lapsolver munkres
31+
pip install lap scipy "ortools<9.4" lapsolver munkres
3232
- name: Lint with flake8
3333
run: |
3434
# stop the build if there are Python syntax errors or undefined names

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ For large datasets solving the minimum cost assignment becomes the dominant runt
421421
- `lapsolver` - https://github.com/cheind/py-lapsolver
422422
- `lapjv` - https://github.com/gatagat/lap
423423
- `scipy` - https://github.com/scipy/scipy/tree/master/scipy
424-
- `ortools<9.5` - https://github.com/google/or-tools
424+
- `ortools<9.4` - https://github.com/google/or-tools
425425
- `munkres` - http://software.clapper.org/munkres/
426426

427427
A comparison for different sized matrices is shown below (taken from [here](https://github.com/cheind/py-lapsolver#benchmarks))

0 commit comments

Comments
 (0)