File tree Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change 77 check_python_version_eol :
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' }}
15- - name : Upgrade Pip, Install Minimum Requirements
25+ python-version : ${{ steps.get_safe_python.outputs.safe_python }}
26+ - name : Upgrade Pip, Install Minimum Requirements For Safe Python
1627 run : |
1728 python -m pip install --upgrade pip pandas lxml packaging
1829 shell : bash
You can’t perform that action at this time.
0 commit comments