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:13 +0300 |
commit | e84107b25efdc838966408cff5e214717a3c11a6 (patch) | |
tree | b945e361368bfe6f788027c60c1fcd0f400bb7bc | |
parent | 6e761c0d7d4a028108292f49dbfe832d1b650945 (diff) |
CI: Remove python-version from matrix
Drop python version from matrix configuration as it's always 3.11.
-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 |