File tree Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change 44 schedule :
55 - cron : ' 0 14 * * *' # 2pm UTC == 9am EST
66jobs :
7+ get_latest_python_version :
8+ runs-on : ubuntu-latest
9+ outputs :
10+ latest_python_version : ${{ steps.set-matrix.outputs.latest_python_version }}
11+ steps :
12+ - name : Checkout STUMPY
13+ uses : actions/checkout@v4
14+ with :
15+ repository : stumpy-dev/stumpy
16+ - name : Upgrade Pip, Install Minimum Requirements
17+ run : |
18+ python -m pip install --upgrade pip pandas lxml packaging
19+ shell : bash
20+ - name : Get Latet Python Version
21+ id : set-matrix
22+ run : |
23+ echo "latest_python_version=$(python ./versions.py -mode latest)" >> $GITHUB_OUTPUT
24+ shell : bash
725 check_numba_python_compatibility :
826 env :
9- req-python-version : ' 3.14'
27+ # req-python-version: '3.14'
28+ req-python-version : ${{ fromJSON(needs.get_latest_python_version.outputs.latest_python_version) }}
1029 runs-on : ubuntu-latest
1130 environment : API_Access
1231 permissions :
You can’t perform that action at this time.
0 commit comments