Skip to content

Commit 02f2a4c

Browse files
committed
wip
1 parent 2f3cf8a commit 02f2a4c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/main.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,26 +19,26 @@ jobs:
1919
set_python_versions:
2020
runs-on: ubuntu-latest
2121
outputs:
22-
python_versions_linux: ${{ steps.set_versions.outputs.python_versions_linux }}
22+
python_versions_linux_windows: ${{ steps.set_versions.outputs.python_versions_linux_windows }}
2323
python_versions_macos: ${{ steps.set_versions.outputs.python_versions_macos }}
2424
steps:
2525
- name: Determine Python versions
2626
id: set_versions
2727
run: |
2828
if [[ "${{ github.ref }}" == "refs/heads/develop2" || "${{ github.ref }}" == refs/heads/release/* ]]; then
29-
echo "python_versions_linux=[\"3.13\", \"3.6\"]" >> $GITHUB_OUTPUT
29+
echo "python_versions_linux_windows=[\"3.13\", \"3.6\"]" >> $GITHUB_OUTPUT
3030
echo "python_versions_macos=[\"3.13\", \"3.8\"]" >> $GITHUB_OUTPUT
3131
else
32-
echo "python_versions_linux=[\"3.8\"]" >> $GITHUB_OUTPUT
33-
echo "python_versions_macos=[\"3.8\"]" >> $GITHUB_OUTPUT
32+
echo "python_versions_linux_windows=[\"3.10\"]" >> $GITHUB_OUTPUT
33+
echo "python_versions_macos=[\"3.12\"]" >> $GITHUB_OUTPUT
3434
fi
3535
3636
linux_suite:
3737
needs: set_python_versions
3838
uses: ./.github/workflows/linux-tests.yml
3939
name: Linux test suite
4040
with:
41-
python-versions: ${{ needs.set_python_versions.outputs.python_versions_linux }}
41+
python-versions: ${{ needs.set_python_versions.outputs.python_versions_linux_windows }}
4242

4343
osx_suite:
4444
needs: set_python_versions
@@ -52,7 +52,7 @@ jobs:
5252
uses: ./.github/workflows/win-tests.yml
5353
name: Windows test suite
5454
with:
55-
python-versions: ${{ needs.set_python_versions.outputs.python_versions_linux }}
55+
python-versions: ${{ needs.set_python_versions.outputs.python_versions_linux_windows }}
5656

5757
code_coverage:
5858
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)