File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 59
59
strategy :
60
60
fail-fast : false
61
61
matrix :
62
- python-version : ['3.9']
62
+ python-version : ['3.9', '3.10', '3.11', '3.12' ]
63
63
ffmpeg-version-for-tests : ['4.4.2', '5.1.2', '6.1.1', '7.0.1']
64
64
if : ${{ always() }}
65
65
needs : build
79
79
run : python -m pip install --upgrade pip
80
80
- name : Install PyTorch
81
81
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
83
83
- name : Install torchcodec from the wheel
84
84
run : |
85
85
wheel_path=`find pytorch/torchcodec/dist -type f -name "*.whl"`
@@ -102,9 +102,10 @@ jobs:
102
102
103
103
- name : Install test dependencies
104
104
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
106
106
# Ideally we would find a way to get those dependencies from pyproject.toml
107
107
python -m pip install numpy pytest pillow
108
+ python -c "import torch; print(f'{torch.__version__ = }')"
108
109
109
110
- name : Delete the src/ folder just for fun
110
111
run : |
Original file line number Diff line number Diff line change 6
6
7
7
from . import decoders # noqa
8
8
9
- __version__ = "0.0.2.dev "
9
+ __version__ = "0.0.2"
You can’t perform that action at this time.
0 commit comments