From ab1fbe545e6b36c74a4592e8982edc197ec796ca Mon Sep 17 00:00:00 2001 From: Alessandro Palmas Date: Sun, 10 Mar 2024 10:20:55 -0400 Subject: [PATCH] Pin python version to 3.10 because of 3.12 github actions incompatibility for package release --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index d31a09c9..24c9e89c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: '3.x' + python-version: "3.10" # Need to limit to specific python version because of 3.12 fails with `python3 -m build` step - run: python3 -m pip install --upgrade build twine - name: build package run: |