Skip to content

Commit a5041a1

Browse files
committed
Bump to latest stable version.
1 parent 9bc3319 commit a5041a1

File tree

3 files changed

+21
-40
lines changed

3 files changed

+21
-40
lines changed

.github/workflows/windows-arm64-wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build Windows ARM64 wheels
33
on: [push]
44

55
env:
6-
MLPACK_COMMIT: 4.5.0
6+
MLPACK_COMMIT: 4.5.1
77
CIBW_TEST_COMMAND: python -c 'import mlpack; import numpy as np; x = np.random.rand(100, 10); o = mlpack.pca(input_=x, new_dimensionality=5, verbose=True)'
88

99
jobs:

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pipeline
55

66
environment
77
{
8-
MLPACK_VERSION = '4.5.0'
8+
MLPACK_VERSION = '4.5.1'
99
TWINE_PYPI_TOKEN = credentials('twine-pypi-token')
1010
}
1111

@@ -42,7 +42,7 @@ pipeline
4242
axis
4343
{
4444
name 'PYTHON_VERSION'
45-
values 'cp36', 'cp37', 'cp38', 'cp39', 'cp310', 'cp311', 'cp312',
45+
values 'cp38', 'cp39', 'cp310', 'cp311', 'cp312', 'cp313',
4646
'pp37', 'pp38', 'pp39'
4747
}
4848

azure-pipelines.yml

Lines changed: 18 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,6 @@ jobs:
22
- job: macos
33
strategy:
44
matrix:
5-
cp36-macosx_x86_64:
6-
CIBW_BUILD: cp36-macosx_x86_64
7-
BUILD_SCRIPT: build_mlpack.osx.sh
8-
CIBW_ARCHS_MACOS: "x86_64"
9-
cp37-macosx_x86_64:
10-
CIBW_BUILD: cp37-macosx_x86_64
11-
BUILD_SCRIPT: build_mlpack.osx.sh
12-
CIBW_ARCHS_MACOS: "x86_64"
135
cp38-macosx_x86_64:
146
CIBW_BUILD: cp38-macosx_x86_64
157
BUILD_SCRIPT: build_mlpack.osx.sh
@@ -50,19 +42,19 @@ jobs:
5042
CIBW_BUILD: cp312-macosx_arm64
5143
BUILD_SCRIPT: build_mlpack.osx.sh
5244
CIBW_ARCHS_MACOS: "arm64"
53-
pp38-macosx_x86_64:
54-
CIBW_BUILD: pp38-macosx_x86_64
45+
cp313-macosx_x86_64:
46+
CIBW_BUILD: cp313-macosx_x86_64
5547
BUILD_SCRIPT: build_mlpack.osx.sh
5648
CIBW_ARCHS_MACOS: "x86_64"
57-
pp39-macosx_x86_64:
58-
CIBW_BUILD: pp39-macosx_x86_64
49+
cp313-macosx_arm64:
50+
CIBW_BUILD: cp313-macosx_arm64
5951
BUILD_SCRIPT: build_mlpack.osx.sh
60-
CIBW_ARCHS_MACOS: "x86_64"
52+
CIBW_ARCHS_MACOS: "arm64"
6153

6254
timeoutInMinutes: 0 # No limit for build time.
6355
pool: {vmImage: 'macOS-14'}
6456
variables:
65-
MLPACK_VERSION: 4.5.0
57+
MLPACK_VERSION: 4.5.1
6658
CIBW_TEST_COMMAND: python -c 'import mlpack; import numpy as np; x = np.random.rand(100, 10); o = mlpack.pca(input_=x, new_dimensionality=5, verbose=True)'
6759
# The PYPI_TOKEN variable is automatically set by Azure Pipelines.
6860
TWINE_PYPI_TOKEN: $(PYPI_TOKEN)
@@ -72,28 +64,6 @@ jobs:
7264
- job: windows
7365
strategy:
7466
matrix:
75-
cp36-win_amd64:
76-
CIBW_BUILD: cp36-win_amd64
77-
BUILD_SCRIPT: build_mlpack.bat
78-
WIN_ARCH: "x64"
79-
OPENBLAS_ARCH: "x64"
80-
cp36-win32:
81-
CIBW_BUILD: cp36-win32
82-
BUILD_SCRIPT: build_mlpack.bat
83-
WIN_ARCH: "Win32"
84-
OPENBLAS_ARCH: "x86"
85-
PANDAS_VER: 1.1.5
86-
cp37-win_amd64:
87-
CIBW_BUILD: cp37-win_amd64
88-
BUILD_SCRIPT: build_mlpack.bat
89-
WIN_ARCH: "x64"
90-
OPENBLAS_ARCH: "x64"
91-
cp37-win32:
92-
CIBW_BUILD: cp37-win32
93-
BUILD_SCRIPT: build_mlpack.bat
94-
WIN_ARCH: "Win32"
95-
OPENBLAS_ARCH: "x86"
96-
PANDAS_VER: 1.3.5
9767
cp38-win_amd64:
9868
CIBW_BUILD: cp38-win_amd64
9969
BUILD_SCRIPT: build_mlpack.bat
@@ -149,6 +119,17 @@ jobs:
149119
WIN_ARCH: "Win32"
150120
OPENBLAS_ARCH: "x86"
151121
PANDAS_VER: 2.0.3
122+
cp313-win_amd64:
123+
CIBW_BUILD: cp313-win_amd64
124+
BUILD_SCRIPT: build_mlpack.bat
125+
WIN_ARCH: "x64"
126+
OPENBLAS_ARCH: "x64"
127+
cp313-win32:
128+
CIBW_BUILD: cp313-win32
129+
BUILD_SCRIPT: build_mlpack.bat
130+
WIN_ARCH: "Win32"
131+
OPENBLAS_ARCH: "x86"
132+
PANDAS_VER: 2.0.3
152133
pp38-win_amd64:
153134
CIBW_BUILD: pp38-win_amd64
154135
BUILD_SCRIPT: build_mlpack.bat
@@ -163,7 +144,7 @@ jobs:
163144
timeoutInMinutes: 0 # No limit for build time.
164145
pool: {vmImage: 'windows-2019'}
165146
variables:
166-
MLPACK_VERSION: 4.5.0
147+
MLPACK_VERSION: 4.5.1
167148
# The PYPI_TOKEN variable is automatically set by Azure Pipelines.
168149
TWINE_PYPI_TOKEN: $(PYPI_TOKEN)
169150
steps:

0 commit comments

Comments
 (0)