Skip to content

Commit e7af0da

Browse files
committed
Minor change
1 parent 8d54285 commit e7af0da

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/check-url-links-actions.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,22 @@ jobs:
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

0 commit comments

Comments
 (0)