diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 826355a..e8beb9a 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -23,8 +23,8 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - python -m pip install --upgrade pip pytest cmake scikit-build - python3 setup.py develop + python -m pip install --upgrade pip pytest cmake scikit-build setuptools + pip install . -v - name: Test with pytest run: | pytest @@ -46,8 +46,8 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - python -m pip install --upgrade pip pytest cmake scikit-build - python3 setup.py develop + python -m pip install --upgrade pip pytest cmake scikit-build setuptools + pip install . -v - name: Test with pytest run: | pytest @@ -69,8 +69,8 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - python -m pip install --upgrade pip pytest cmake scikit-build - python3 setup.py develop + python -m pip install --upgrade pip pytest cmake scikit-build setuptools + pip install . -v - name: Test with pytest run: | pytest \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index bafb743..2ef7cd4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.poetry] -name = "llama_cpp" +name = "llama_cpp_python" version = "0.1.24" description = "Python bindings for the llama.cpp library" authors = ["Andrei Betlen "]