From ec94445f2f0b25384a415348c0d71dc244302091 Mon Sep 17 00:00:00 2001 From: Yasha Bubnov Date: Sun, 21 Apr 2024 18:21:34 +0200 Subject: [PATCH] Install Python dev version. --- .github/workflows/python_unit_test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python_unit_test.yaml b/.github/workflows/python_unit_test.yaml index c7dbdce..cb22035 100644 --- a/.github/workflows/python_unit_test.yaml +++ b/.github/workflows/python_unit_test.yaml @@ -20,9 +20,9 @@ jobs: uses: actions/checkout@v4 - name: Setup Python ${{matrix.python-version}} - uses: actions/setup-python@v1 + uses: actions/setup-python@v5 with: - python-version: ${{matrix.python-version}} + python-version: "${{matrix.python-version}}"-dev - name: Configure apt to disable recommendations installation run: | @@ -43,7 +43,7 @@ jobs: - name: Build and install run: | python setup.py build - find ${{github.workspace}} -name "_C.*.so" ${{github.workspace}}/torch_geopooling \; + find ${{github.workspace}} -name "_C.*.so" ${{github.workspace}}/torch_geopooling/ \; - name: Run unit-tests run: pytest -vv