File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 5959 strategy :
6060 fail-fast : false
6161 matrix :
62- python-version : ['3.9']
62+ python-version : ['3.9', '3.10', '3.11', '3.12' ]
6363 ffmpeg-version-for-tests : ['4.4.2', '5.1.2', '6.1.1', '7.0.1']
6464 if : ${{ always() }}
6565 needs : build
7979 run : python -m pip install --upgrade pip
8080 - name : Install PyTorch
8181 run : |
82- python -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly /cpu
82+ python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
8383 - name : Install torchcodec from the wheel
8484 run : |
8585 wheel_path=`find pytorch/torchcodec/dist -type f -name "*.whl"`
@@ -102,9 +102,10 @@ jobs:
102102
103103 - name : Install test dependencies
104104 run : |
105- python -m pip install --pre torchvision --index-url https://download.pytorch.org/whl/nightly /cpu
105+ python -m pip install torchvision --index-url https://download.pytorch.org/whl/cpu
106106 # Ideally we would find a way to get those dependencies from pyproject.toml
107107 python -m pip install numpy pytest pillow
108+ python -c "import torch; print(f'{torch.__version__ = }')"
108109
109110 - name : Delete the src/ folder just for fun
110111 run : |
Original file line number Diff line number Diff line change 66
77from . import decoders # noqa
88
9- __version__ = "0.0.2.dev "
9+ __version__ = "0.0.2"
You can’t perform that action at this time.
0 commit comments