libggml-python 0.9.7__tar.gz → 0.9.11__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31,11 +31,11 @@ jobs:
31
31
  submodules: recursive
32
32
 
33
33
  - name: Build wheels
34
- uses: pypa/cibuildwheel@v3.3.1
34
+ uses: pypa/cibuildwheel@v3.4.1
35
35
  env:
36
36
  CIBW_PLATFORM: ${{ matrix.platform || 'auto' }}
37
37
 
38
- - uses: actions/upload-artifact@v6
38
+ - uses: actions/upload-artifact@v7
39
39
  with:
40
40
  name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
41
41
  path: ./wheelhouse/*.whl
@@ -49,7 +49,7 @@ jobs:
49
49
  - name: Build sdist
50
50
  run: pipx run build --sdist
51
51
 
52
- - uses: actions/upload-artifact@v6
52
+ - uses: actions/upload-artifact@v7
53
53
  with:
54
54
  name: cibw-sdist
55
55
  path: dist/*.tar.gz
@@ -62,10 +62,10 @@ jobs:
62
62
  id-token: write
63
63
  if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
64
64
  steps:
65
- - uses: actions/download-artifact@v7
65
+ - uses: actions/download-artifact@v8
66
66
  with:
67
67
  pattern: cibw-*
68
68
  path: dist
69
69
  merge-multiple: true
70
70
 
71
- - uses: pypa/gh-action-pypi-publish@v1.13.0
71
+ - uses: pypa/gh-action-pypi-publish@v1.14.0
@@ -1,4 +1,4 @@
1
1
  [submodule "ggml"]
2
2
  path = ggml
3
3
  url = https://github.com/ggml-org/ggml
4
- branch = v0.9.7
4
+ branch = v0.9.11
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: libggml-python
3
- Version: 0.9.7
3
+ Version: 0.9.11
4
4
  Summary: Prebuilt ggml libraries
5
5
  Author: benniekiss
6
6
  License-Expression: MIT
@@ -0,0 +1,24 @@
1
+ # file generated by vcs-versioning
2
+ # don't change, don't track in version control
3
+ from __future__ import annotations
4
+
5
+ __all__ = [
6
+ "__version__",
7
+ "__version_tuple__",
8
+ "version",
9
+ "version_tuple",
10
+ "__commit_id__",
11
+ "commit_id",
12
+ ]
13
+
14
+ version: str
15
+ __version__: str
16
+ __version_tuple__: tuple[int | str, ...]
17
+ version_tuple: tuple[int | str, ...]
18
+ commit_id: str | None
19
+ __commit_id__: str | None
20
+
21
+ __version__ = version = '0.9.11'
22
+ __version_tuple__ = version_tuple = (0, 9, 11)
23
+
24
+ __commit_id__ = commit_id = 'g8b4b1cc99'
@@ -1,34 +0,0 @@
1
- # file generated by setuptools-scm
2
- # don't change, don't track in version control
3
-
4
- __all__ = [
5
- "__version__",
6
- "__version_tuple__",
7
- "version",
8
- "version_tuple",
9
- "__commit_id__",
10
- "commit_id",
11
- ]
12
-
13
- TYPE_CHECKING = False
14
- if TYPE_CHECKING:
15
- from typing import Tuple
16
- from typing import Union
17
-
18
- VERSION_TUPLE = Tuple[Union[int, str], ...]
19
- COMMIT_ID = Union[str, None]
20
- else:
21
- VERSION_TUPLE = object
22
- COMMIT_ID = object
23
-
24
- version: str
25
- __version__: str
26
- __version_tuple__: VERSION_TUPLE
27
- version_tuple: VERSION_TUPLE
28
- commit_id: COMMIT_ID
29
- __commit_id__: COMMIT_ID
30
-
31
- __version__ = version = '0.9.7'
32
- __version_tuple__ = version_tuple = (0, 9, 7)
33
-
34
- __commit_id__ = commit_id = 'gf36fe691a'
File without changes