Skip to content

Commit 5527153

Browse files
committed
Minor change
1 parent 3bab8a7 commit 5527153

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

.github/workflows/numba-python-compatibility-actions.yml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,28 @@ on:
44
schedule:
55
- cron: '0 14 * * *' # 2pm UTC == 9am EST
66
jobs:
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:

0 commit comments

Comments
 (0)