@@ -11,12 +11,12 @@ jobs:
1111 pre-commit :
1212 runs-on : ubuntu-latest
1313 steps :
14- - uses : actions/checkout@v4
14+ - uses : actions/checkout@v5
1515 - name : Fetch base branch
1616 run : git fetch origin ${{ github.base_ref }}
17- - uses : actions/setup-python@v5
17+ - uses : actions/setup-python@v6
1818 with :
19- python-version : " 3.9 "
19+ python-version : " 3.10 "
2020 architecture : x64
2121 - name : Get pip cache dir
2222 id : pip-cache
@@ -70,10 +70,16 @@ jobs:
7070 - python-version : ' 3.13'
7171 pytorch-version : 2.5.1
7272 numpy-requirement : " 'numpy'"
73+ - python-version : ' 3.14'
74+ pytorch-version : 2.8.0
75+ numpy-requirement : " 'numpy>=2.3.4'"
7376 steps :
7477 - uses : conda-incubator/setup-miniconda@v3
7578 - run : conda install -n test ffmpeg python=${{ matrix.python-version }}
76- - uses : actions/checkout@v4
79+ - uses : actions/checkout@v5
7780 - run : echo "$CONDA/envs/test/bin" >> $GITHUB_PATH
78- - run : pip3 install .["dev"] ${{ matrix.numpy-requirement }} torch==${{ matrix.pytorch-version }}+cpu --index-url https://download.pytorch.org/whl/cpu --extra-index-url https://pypi.org/simple
81+ - if : matrix.python-version != '3.14'
82+ run : pip3 install .["dev"] ${{ matrix.numpy-requirement }} torch==${{ matrix.pytorch-version }}+cpu --index-url https://download.pytorch.org/whl/cpu --extra-index-url https://pypi.org/simple
83+ - if : matrix.python-version == '3.14'
84+ run : pip3 install .["dev"] ${{ matrix.numpy-requirement }} --extra-index-url https://pypi.org/simple
7985 - run : pytest --durations=0 -vv -k 'not test_transcribe or test_transcribe[tiny] or test_transcribe[tiny.en]' -m 'not requires_cuda'
0 commit comments