Skip to content

Commit 7db5e17

Browse files
committed
build: update project metadata, pin numpy, and add Py3.14 support
- Update repository URLs (Homepage, Issues, Changelog) to point to JamePeng/llama-cpp-python. - Restrict numpy version to <=2.3.2 to ensure compatibility. - Add Python 3.14 to project classifiers. - Add FAQ link to project URLs. Signed-off-by: JamePeng <jame_peng@sina.com>
1 parent 791b21e commit 7db5e17

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ authors = [
1313
]
1414
dependencies = [
1515
"typing-extensions>=4.8.0",
16-
"numpy>=1.21.6",
16+
"numpy>=1.21.6,<=2.3.2",
1717
"diskcache>=5.6.2",
1818
"jinja2>=2.11.3",
1919
"Pillow>=9.5.0",
@@ -26,6 +26,7 @@ classifiers = [
2626
"Programming Language :: Python :: 3.11",
2727
"Programming Language :: Python :: 3.12",
2828
"Programming Language :: Python :: 3.13",
29+
"Programming Language :: Python :: 3.14",
2930
]
3031

3132

@@ -73,10 +74,11 @@ provider = "scikit_build_core.metadata.regex"
7374
input = "llama_cpp/__init__.py"
7475

7576
[project.urls]
76-
Homepage = "https://github.com/abetlen/llama-cpp-python"
77-
Issues = "https://github.com/abetlen/llama-cpp-python/issues"
77+
Homepage = "https://github.com/JamePeng/llama-cpp-python"
78+
Issues = "https://github.com/JamePeng/llama-cpp-python/issues"
7879
Documentation = "https://llama-cpp-python.readthedocs.io/en/latest/"
79-
Changelog = "https://llama-cpp-python.readthedocs.io/en/latest/changelog/"
80+
Changelog = "https://github.com/JamePeng/llama-cpp-python/blob/main/CHANGELOG.md"
81+
FAQ = "https://github.com/JamePeng/llama-cpp-python?tab=readme-ov-file#faq"
8082

8183
[tool.pytest.ini_options]
8284
testpaths = "tests"

0 commit comments

Comments
 (0)