diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 4565cfe6..fbc676de 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -158,20 +158,21 @@ jobs: if: matrix.os == 'windows-latest' run: cmake --install build --config ${{ matrix.release }} -# - name: Install pyuda -# if: matrix.os == 'ubuntu-latest' -# run: > -# cp -r /usr/local/python_installer ${{github.workspace}}/python_installer && -# python3 -m venv ${{github.workspace}}/venv && -# source ${{github.workspace}}/venv/bin/activate && -# pip3 install Cython numpy six && -# pip3 install ${{github.workspace}}/python_installer - -# - name: Test pyuda import -# if: matrix.os == 'ubuntu-latest' -# run: > -# source ${{github.workspace}}/venv/bin/activate && -# python3 -c 'import pyuda; client=pyuda.Client()' + - name: Install pyuda + if: matrix.os == 'ubuntu-latest' + run: > + cp -r /usr/local/python_installer ${{github.workspace}}/python_installer && + python3 -m venv ${{github.workspace}}/venv && + source ${{github.workspace}}/venv/bin/activate && + pip3 install --upgrade pip && + pip3 install wheel Cython numpy six && + pip3 install ${{github.workspace}}/python_installer + + - name: Test pyuda import + if: matrix.os == 'ubuntu-latest' + run: > + source ${{github.workspace}}/venv/bin/activate && + python3 -c 'import pyuda; client=pyuda.Client()' # - name: Test # working-directory: build