From ede819aa48550e70484cf45c56dd6fa2cbb5b66d Mon Sep 17 00:00:00 2001 From: Carlos Paniagua Date: Fri, 25 Oct 2024 10:45:45 -0400 Subject: [PATCH] ci: revert ci changes Stick to python 3.11 as Python 3.12 doesn't work --- .github/workflows/CI.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index e2ffbfa5..61c9f9df 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -27,11 +27,11 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: '3.12' - - name: update pip adding setuptools and wheel for v3.12 - run: python -m pip install -U pip setuptools wheel + python-version: '3.11' + - name: update pip + run: python -m pip install -U pip - name: install python deps - run: python -m pip install --prefer-binary -U -r requirements.txt + run: python -m pip install -U -r requirements.txt - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }}