diff options
author | Bennett Goble <signal@lindenlab.com> | 2024-04-11 00:16:17 -0700 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-04-15 20:02:18 +0300 |
commit | f8c7933f306dc2cec81b222a1d58a1d84e0f6442 (patch) | |
tree | abfc9fc3974496142a9357f6aa266ee4229b9cd0 /.github/workflows/build.yaml | |
parent | 970531b483e4cab8c5b9608028f19626ce6f0cce (diff) |
CI: Remove python-version from matrix
Drop python version from matrix configuration as it's always 3.11.
Diffstat (limited to '.github/workflows/build.yaml')
-rw-r--r-- | .github/workflows/build.yaml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ddb0f44150..f18b31ef0f 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,7 +13,6 @@ jobs: matrix: runner: [windows-large, macos-12-xl] configuration: [Release, ReleaseOS] - python-version: ["3.11"] include: - runner: macos-12-xl developer_dir: "/Applications/Xcode_14.0.1.app/Contents/Developer" @@ -67,7 +66,7 @@ jobs: - name: Setup python uses: actions/setup-python@v5 with: - python-version: ${{ matrix.python-version }} + python-version: "3.11" - name: Checkout build variables uses: actions/checkout@v4 |