From a984f55d796c610e184a8f34aa96a6cc58bf2b2e Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Mon, 10 Apr 2023 00:51:25 -0400 Subject: [PATCH] Quickfix: forgot to clone submodules when building and publishing pypi package --- .github/workflows/publish-to-test.yaml | 2 ++ .github/workflows/publish.yaml | 2 ++ pyproject.toml | 2 +- setup.py | 2 +- 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-to-test.yaml b/.github/workflows/publish-to-test.yaml index 5fdf405..5a9f339 100644 --- a/.github/workflows/publish-to-test.yaml +++ b/.github/workflows/publish-to-test.yaml @@ -11,6 +11,8 @@ jobs: steps: - uses: actions/checkout@v3 + with: + submodules: "true" - name: Set up Python uses: actions/setup-python@v4 with: diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 2972110..92b6e5b 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -11,6 +11,8 @@ jobs: steps: - uses: actions/checkout@v3 + with: + submodules: "true" - name: Set up Python uses: actions/setup-python@v4 with: diff --git a/pyproject.toml b/pyproject.toml index 6885d7f..11d950b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "llama_cpp_python" -version = "0.1.28" +version = "0.1.29" description = "Python bindings for the llama.cpp library" authors = ["Andrei Betlen "] license = "MIT" diff --git a/setup.py b/setup.py index 37f5396..0b0add0 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( description="A Python wrapper for llama.cpp", long_description=long_description, long_description_content_type="text/markdown", - version="0.1.28", + version="0.1.29", author="Andrei Betlen", author_email="abetlen@gmail.com", license="MIT",