requirements
parent
94b2bb68cc
commit
a0fa5f5efe
|
@ -4,7 +4,7 @@ name: CI CPU testing
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
pytest:
|
cpu-tests:
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
|
@ -39,7 +39,8 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
# python -m pip install --upgrade --user pip
|
# python -m pip install --upgrade --user pip
|
||||||
pip install -qr requirements.txt onnx
|
pip install -qr requirements.txt
|
||||||
|
pip install -qr onnx
|
||||||
python --version
|
python --version
|
||||||
pip --version
|
pip --version
|
||||||
pip list
|
pip list
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
# pip install -U -r requirements.txt
|
# pip install -U -r requirements.txt
|
||||||
Cython
|
Cython
|
||||||
numpy==1.17.3
|
numpy>=1.17.3
|
||||||
opencv-python
|
opencv-python
|
||||||
torch>=1.5.1
|
torch>=1.5.1
|
||||||
matplotlib
|
matplotlib
|
||||||
pillow
|
pillow
|
||||||
tensorboard
|
tensorboard
|
||||||
PyYAML>=5.3
|
PyYAML>=5.3
|
||||||
torchvision
|
torchvision>=0.6
|
||||||
scipy
|
scipy
|
||||||
tqdm
|
tqdm
|
||||||
git+https://github.com/cocodataset/cocoapi.git#subdirectory=PythonAPI
|
git+https://github.com/cocodataset/cocoapi.git#subdirectory=PythonAPI
|
||||||
|
|
Loading…
Reference in New Issue