Skip to content

Commit

Permalink
Bump to latest stable version.
Browse files Browse the repository at this point in the history
  • Loading branch information
rcurtin committed Dec 11, 2024
1 parent 9bc3319 commit a5041a1
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 40 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/windows-arm64-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build Windows ARM64 wheels
on: [push]

env:
MLPACK_COMMIT: 4.5.0
MLPACK_COMMIT: 4.5.1
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)'

jobs:
Expand Down
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pipeline

environment
{
MLPACK_VERSION = '4.5.0'
MLPACK_VERSION = '4.5.1'
TWINE_PYPI_TOKEN = credentials('twine-pypi-token')
}

Expand Down Expand Up @@ -42,7 +42,7 @@ pipeline
axis
{
name 'PYTHON_VERSION'
values 'cp36', 'cp37', 'cp38', 'cp39', 'cp310', 'cp311', 'cp312',
values 'cp38', 'cp39', 'cp310', 'cp311', 'cp312', 'cp313',
'pp37', 'pp38', 'pp39'
}

Expand Down
55 changes: 18 additions & 37 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,6 @@ jobs:
- job: macos
strategy:
matrix:
cp36-macosx_x86_64:
CIBW_BUILD: cp36-macosx_x86_64
BUILD_SCRIPT: build_mlpack.osx.sh
CIBW_ARCHS_MACOS: "x86_64"
cp37-macosx_x86_64:
CIBW_BUILD: cp37-macosx_x86_64
BUILD_SCRIPT: build_mlpack.osx.sh
CIBW_ARCHS_MACOS: "x86_64"
cp38-macosx_x86_64:
CIBW_BUILD: cp38-macosx_x86_64
BUILD_SCRIPT: build_mlpack.osx.sh
Expand Down Expand Up @@ -50,19 +42,19 @@ jobs:
CIBW_BUILD: cp312-macosx_arm64
BUILD_SCRIPT: build_mlpack.osx.sh
CIBW_ARCHS_MACOS: "arm64"
pp38-macosx_x86_64:
CIBW_BUILD: pp38-macosx_x86_64
cp313-macosx_x86_64:
CIBW_BUILD: cp313-macosx_x86_64
BUILD_SCRIPT: build_mlpack.osx.sh
CIBW_ARCHS_MACOS: "x86_64"
pp39-macosx_x86_64:
CIBW_BUILD: pp39-macosx_x86_64
cp313-macosx_arm64:
CIBW_BUILD: cp313-macosx_arm64
BUILD_SCRIPT: build_mlpack.osx.sh
CIBW_ARCHS_MACOS: "x86_64"
CIBW_ARCHS_MACOS: "arm64"

timeoutInMinutes: 0 # No limit for build time.
pool: {vmImage: 'macOS-14'}
variables:
MLPACK_VERSION: 4.5.0
MLPACK_VERSION: 4.5.1
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)'
# The PYPI_TOKEN variable is automatically set by Azure Pipelines.
TWINE_PYPI_TOKEN: $(PYPI_TOKEN)
Expand All @@ -72,28 +64,6 @@ jobs:
- job: windows
strategy:
matrix:
cp36-win_amd64:
CIBW_BUILD: cp36-win_amd64
BUILD_SCRIPT: build_mlpack.bat
WIN_ARCH: "x64"
OPENBLAS_ARCH: "x64"
cp36-win32:
CIBW_BUILD: cp36-win32
BUILD_SCRIPT: build_mlpack.bat
WIN_ARCH: "Win32"
OPENBLAS_ARCH: "x86"
PANDAS_VER: 1.1.5
cp37-win_amd64:
CIBW_BUILD: cp37-win_amd64
BUILD_SCRIPT: build_mlpack.bat
WIN_ARCH: "x64"
OPENBLAS_ARCH: "x64"
cp37-win32:
CIBW_BUILD: cp37-win32
BUILD_SCRIPT: build_mlpack.bat
WIN_ARCH: "Win32"
OPENBLAS_ARCH: "x86"
PANDAS_VER: 1.3.5
cp38-win_amd64:
CIBW_BUILD: cp38-win_amd64
BUILD_SCRIPT: build_mlpack.bat
Expand Down Expand Up @@ -149,6 +119,17 @@ jobs:
WIN_ARCH: "Win32"
OPENBLAS_ARCH: "x86"
PANDAS_VER: 2.0.3
cp313-win_amd64:
CIBW_BUILD: cp313-win_amd64
BUILD_SCRIPT: build_mlpack.bat
WIN_ARCH: "x64"
OPENBLAS_ARCH: "x64"
cp313-win32:
CIBW_BUILD: cp313-win32
BUILD_SCRIPT: build_mlpack.bat
WIN_ARCH: "Win32"
OPENBLAS_ARCH: "x86"
PANDAS_VER: 2.0.3
pp38-win_amd64:
CIBW_BUILD: pp38-win_amd64
BUILD_SCRIPT: build_mlpack.bat
Expand All @@ -163,7 +144,7 @@ jobs:
timeoutInMinutes: 0 # No limit for build time.
pool: {vmImage: 'windows-2019'}
variables:
MLPACK_VERSION: 4.5.0
MLPACK_VERSION: 4.5.1
# The PYPI_TOKEN variable is automatically set by Azure Pipelines.
TWINE_PYPI_TOKEN: $(PYPI_TOKEN)
steps:
Expand Down

0 comments on commit a5041a1

Please sign in to comment.