File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 77 check_url_links :
88 runs-on : ubuntu-latest
99 steps :
10- - uses : actions/checkout@v4
10+ - name : Checkout STUMPY
11+ uses : actions/checkout@v4
12+ with :
13+ repository : stumpy-dev/stumpy
14+ - name : Upgrade Pip, Install Minimum Requirements
15+ run : |
16+ python -m pip install --upgrade pip pandas lxml packaging
17+ shell : bash
18+ - name : Determine Safe Python Version
19+ id : get_safe_python
20+ run : |
21+ echo "safe_python=$(python ./versions.py -mode safe)" >> $GITHUB_OUTPUT
1122 - name : Set Up Python
1223 uses : actions/setup-python@v5
1324 with :
14- python-version : ${{ '3.12' }}
25+ python-version : ${{ steps.get_safe_python.outputs.safe_python }}
1526 - name : Display Python Version
1627 run : python -c "import sys; print(sys.version)"
1728 shell : bash
You can’t perform that action at this time.
0 commit comments