mirror of
https://github.com/abetlen/llama-cpp-python.git
synced 2023-09-07 17:34:22 +03:00
Install with pip during build step
Use setup.py install Upgrade version of setuptools Revert to develop Use setup.py build and pip install Just use pip install Use correct name in pyproject.toml Make pip install verbose
This commit is contained in:
12
.github/workflows/test.yaml
vendored
12
.github/workflows/test.yaml
vendored
@@ -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
|
||||
Reference in New Issue
Block a user