Skip to content

Commit 84b4d96

Browse files
authored
fix release build + patch bump (#2387)
1 parent aec67f2 commit 84b4d96

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.circleci/config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,7 @@ jobs:
272272
name: Build Python package
273273
command: |
274274
source env/bin/activate
275+
python setup.py clean --all
275276
<< parameters.build_env >> MLX_BUILD_STAGE=1 python -m build -w
276277
- when:
277278
condition:
@@ -333,6 +334,7 @@ jobs:
333334
<< parameters.build_env >> pip install ".[dev]" -v
334335
pip install typing_extensions
335336
python setup.py generate_stubs
337+
python setup.py clean --all
336338
MLX_BUILD_STAGE=1 << parameters.build_env >> python -m build -w
337339
bash python/scripts/repair_linux.sh
338340
- when:

mlx/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#define MLX_VERSION_MAJOR 0
66
#define MLX_VERSION_MINOR 26
7-
#define MLX_VERSION_PATCH 4
7+
#define MLX_VERSION_PATCH 5
88
#define MLX_VERSION_NUMERIC \
99
(100000 * MLX_VERSION_MAJOR + 1000 * MLX_VERSION_MINOR + MLX_VERSION_PATCH)
1010

0 commit comments

Comments
 (0)