From bbdc19cb5e8876488637d2a3a9662a7aa15e5b4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lucas=20de=20Sousa=20Almeida?= <joao.l.sa.9.3@gmail.com> Date: Tue, 11 Mar 2025 16:27:14 -0300 Subject: [PATCH 1/2] granitewxc and prithviwxc can be installed from PyPI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Lucas de Sousa Almeida <joao.l.sa.9.3@gmail.com> --- .github/workflows/test.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index b3610473..a3204124 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -35,9 +35,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -e .[test] - pip install git+https://github.com/NASA-IMPACT/Prithvi-WxC.git - pip install git+https://github.com/IBM/granite-wxc.git + pip install -e .[wxc,test] - name: List pip dependencies run: pip list - name: Test with pytest From 584041c40670ee4fd678d93b69ebc920f3592bd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Lucas=20de=20Sousa=20Almeida?= <joao.l.sa.9.3@gmail.com> Date: Tue, 11 Mar 2025 16:27:54 -0300 Subject: [PATCH 2/2] Trying to remove constraints over the Python version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Lucas de Sousa Almeida <joao.l.sa.9.3@gmail.com> --- .github/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a3204124..ee203311 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -22,7 +22,7 @@ jobs: timeout-minutes: 30 strategy: matrix: - python-version: ["3.10", "3.11", "3.12.7"] + python-version: ["3.10", "3.11", "3.12"] steps: - name: Clone repo