Skip to content

Commit 447d86f

Browse files
committed
26.1.5
1 parent e5cf461 commit 447d86f

4 files changed

Lines changed: 9 additions & 15 deletions

File tree

.github/workflows/python-publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,5 @@ jobs:
4242
with:
4343
user: __token__
4444
password: ${{ secrets.MATLABENGINE_PYPI_TOKEN }}
45+
verbose: true
46+
skip-existing: true

.github/workflows/qualify_26a.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,9 @@
1-
# Run tInstall on Ubuntu against python versions 3.12, 3.11, 3.10 and 3.9
1+
# Run tInstall on Ubuntu against supported Python versions
22
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
33
name: Test R2026a
44

55
on:
6-
push:
7-
branches:
8-
- R2026a
9-
10-
pull_request:
11-
branches:
12-
- R2026a
13-
14-
# Allows you to run this workflow manually from the Actions tab
6+
# Allows you to run this workflow manually from the Actions tab as long as it's on the main branch
157
workflow_dispatch:
168

179

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The MATLAB® Engine API for Python® provides a package to integrate MATLA
2121
MATLAB Engine API for Python can be installed directly from the Python Package Index.
2222
<!-- MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) -->
2323
```bash
24-
$ python -m pip install matlabengine==26.1.4
24+
$ python -m pip install matlabengine==26.1.5
2525
```
2626

2727

@@ -46,7 +46,7 @@ setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:<matlabroot>/bin/glnxa64
4646
MATLAB Engine API for Python can be installed directly from the Python Package Index.
4747
<!-- MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) -->
4848
```bash
49-
$ python -m pip install matlabengine==26.1.4
49+
$ python -m pip install matlabengine==26.1.5
5050
```
5151

5252
### macOS
@@ -70,7 +70,7 @@ setenv DYLD_LIBRARY_PATH ${DYLD_LIBRARY_PATH}:<matlabroot>/bin/maci64
7070
MATLAB Engine API for Python can be installed directly from the Python Package Index.
7171
<!-- MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string) -->
7272
```bash
73-
$ python -m pip install matlabengine==26.1.4
73+
$ python -m pip install matlabengine==26.1.5
7474
```
7575

7676
---

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class _MatlabFinder(build_py):
2424
MATLAB_REL = 'R2026a'
2525

2626
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
27-
MATLAB_VER = '26.1.4'
27+
MATLAB_VER = '26.1.5'
2828

2929
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
3030
SUPPORTED_PYTHON_VERSIONS = set(['3.9', '3.10', '3.11', '3.12', '3.13'])
@@ -420,7 +420,7 @@ def run(self):
420420
setup(
421421
name="matlabengine",
422422
# MUST_BE_UPDATED_EACH_RELEASE (Search repo for this string)
423-
version="26.1.4",
423+
version="26.1.5",
424424
description='A module to call MATLAB from Python',
425425
author='MathWorks',
426426
license="LICENSE.txt, located in this repository",

0 commit comments

Comments
 (0)