diff options
author | Bennett Goble <signal@lindenlab.com> | 2024-04-11 00:16:17 -0700 |
---|---|---|
committer | Bennett Goble <signal@lindenlab.com> | 2024-04-11 00:16:17 -0700 |
commit | 7fa24d636e42c19baf8a9a6fc4bf9b554dca0e3a (patch) | |
tree | 33412786e2850893e6bdcb44a76e3f2e099eed4e /.github/workflows | |
parent | da9a1dcb55548a249ff7a1255f3e518696b81245 (diff) |
CI: Remove python-version from matrix
Drop python version from matrix configuration as it's always 3.11.
Diffstat (limited to '.github/workflows')
-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 |