Skip to content

Commit 68b0516

Browse files
committed
Restored file
1 parent 7f8db11 commit 68b0516

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

.github/workflows/check-pypi-wheels-actions.yml

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,12 @@ on:
44
schedule:
55
- cron: '0 14 * * *' # 2pm UTC == 9am EST
66
jobs:
7-
generate_python_matrix:
8-
runs-on: ubuntu-latest
9-
outputs:
10-
python-versions: ${{ steps.set-matrix.outputs.python_versions }}
11-
steps:
12-
- name: Generate Python Versions
13-
id: set-matrix
14-
run: |
15-
PYTHON_VERSIONS='["3.10", "3.11", "3.12", "3.13"]'
16-
17-
# Output the JSON string
18-
echo "python_versions=${PYTHON_VERSIONS}" >> $GITHUB_OUTPUT
197
check_pypi_wheels:
20-
needs: generate_python_matrix
218
runs-on: ${{ matrix.os }}
229
strategy:
2310
matrix:
2411
os: [ubuntu-latest, macos-latest, windows-latest]
25-
# python-version: ['3.10', '3.11', '3.12', '3.13']
26-
python-version: ${{ fromJSON(needs.generate_python_matrix.outputs.python_versions) }}
12+
python-version: ['3.10', '3.11', '3.12', '3.13']
2713
steps:
2814
- uses: actions/checkout@v4
2915
- name: Set Up Python

0 commit comments

Comments
 (0)