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",