Skip to content

Commit e739eea

Browse files
committed
Merge branch 'main' of github.com:abetlen/ggml-python into main
2 parents d2a008e + b547344 commit e739eea

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
submodules: "true"
1616
- name: Set up Python
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: "3.8"
2020
- name: Install dependencies

.github/workflows/test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
submodules: "true"
2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v4
23+
uses: actions/setup-python@v5
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626
- name: Install dependencies
@@ -48,7 +48,7 @@ jobs:
4848
with:
4949
submodules: "true"
5050
- name: Set up Python ${{ matrix.python-version }}
51-
uses: actions/setup-python@v4
51+
uses: actions/setup-python@v5
5252
with:
5353
python-version: ${{ matrix.python-version }}
5454

@@ -71,7 +71,7 @@ jobs:
7171
with:
7272
submodules: "true"
7373
- name: Set up Python ${{ matrix.python-version }}
74-
uses: actions/setup-python@v4
74+
uses: actions/setup-python@v5
7575
with:
7676
python-version: ${{ matrix.python-version }}
7777
- name: Install dependencies
@@ -96,7 +96,7 @@ jobs:
9696
with:
9797
submodules: "true"
9898
- name: Set up Python
99-
uses: actions/setup-python@v4
99+
uses: actions/setup-python@v5
100100
with:
101101
python-version: "3.8"
102102
- name: Install dependencies

.github/workflows/wheels-cuda.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
with:
4848
submodules: "recursive"
4949

50-
- uses: actions/setup-python@v4
50+
- uses: actions/setup-python@v5
5151
with:
5252
python-version: ${{ matrix.pyver }}
5353

@@ -65,7 +65,7 @@ jobs:
6565
- name: VS Integration Cache
6666
id: vs-integration-cache
6767
if: runner.os == 'Windows'
68-
uses: actions/cache@v3.3.2
68+
uses: actions/cache@v4.0.2
6969
with:
7070
path: ./MSBuildExtensions
7171
key: cuda-${{ matrix.cuda }}-vs-integration
@@ -122,7 +122,7 @@ jobs:
122122
python -m build --wheel
123123
Write-Output "CUDA_VERSION=$cudaVersion" >> $env:GITHUB_ENV
124124
125-
- uses: softprops/action-gh-release@v1
125+
- uses: softprops/action-gh-release@v2
126126
with:
127127
files: dist/*
128128
tag_name: ${{ github.ref_name }}-cu${{ env.CUDA_VERSION }}

.github/workflows/wheels-metal.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
submodules: "recursive"
4343

44-
- uses: actions/setup-python@v4
44+
- uses: actions/setup-python@v5
4545
with:
4646
python-version: ${{ matrix.pyver }}
4747

@@ -78,7 +78,7 @@ jobs:
7878
VERBOSE=1 python -m build --wheel
7979
fi
8080
81-
- uses: softprops/action-gh-release@v1
81+
- uses: softprops/action-gh-release@v2
8282
with:
8383
files: dist/*
8484
# set release name to <tag>-metal

.github/workflows/wheels.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ jobs:
4040
runs-on: ubuntu-latest
4141

4242
steps:
43-
- uses: actions/download-artifact@v3
43+
- uses: actions/download-artifact@v4
4444
with:
4545
name: artifact
4646
path: dist
47-
- uses: softprops/action-gh-release@v1
47+
- uses: softprops/action-gh-release@v2
4848
with:
4949
files: dist/*
5050
env:

examples/clip/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ filelock==3.9.0
66
ftfy==6.1.1
77
ggml-python @ git+https://github.com/abetlen/ggml-python@main
88
idna==3.7
9-
Jinja2==3.1.3
9+
Jinja2==3.1.4
1010
MarkupSafe==2.1.2
1111
mpmath==1.3.0
1212
networkx==3.0
@@ -18,7 +18,7 @@ scipy==1.10.1
1818
sympy==1.11.1
1919
torch==2.0.1+cpu
2020
torchvision==0.15.2+cpu
21-
tqdm==4.65.0
21+
tqdm==4.66.3
2222
typing-extensions==4.6.3
2323
urllib3==1.26.18
2424
wcwidth==0.2.6

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ test = ["pytest"]
4545
docs = ["mkdocs", "mkdocstrings[python]", "mkdocs-material", "pillow", "cairosvg"]
4646
publish = ["build"]
4747
convert = [
48-
"accelerate==0.29.3",
49-
"numpy==1.24.3",
50-
"sentencepiece==0.1.98",
48+
"accelerate==0.30.0",
49+
"numpy==1.26.4",
50+
"sentencepiece==0.2.0",
5151
"torch==2.3.0",
5252
"torchaudio==2.3.0",
5353
"torchvision==0.18.0",
54-
"transformers==4.40.1"
54+
"transformers==4.40.2"
5555
]
5656

5757
[project.urls]

0 commit comments

Comments
 (0)