Skip to content

Commit

Permalink
update_buildwheels
Browse files Browse the repository at this point in the history
  • Loading branch information
elephaint committed Feb 8, 2024
1 parent c0a61f2 commit 2f05d85
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 37 deletions.
99 changes: 64 additions & 35 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push, pull_request, workflow_call]

jobs:
build_wheels:
name: Build wheel for cp${{ matrix.python }}-${{ matrix.platform_id }}-${{ matrix.manylinux_image }}
name: Build wheel for cp${{ matrix.python }}-${{ matrix.platform_id }}
runs-on: ${{ matrix.os }}

strategy:
Expand All @@ -14,7 +14,7 @@ jobs:
matrix:
include:
# Window 64 bit
- os: windows-latest
- os: windows-2019
python: 38
platform_id: win_amd64
- os: windows-latest
Expand All @@ -26,11 +26,8 @@ jobs:
- os: windows-latest
python: 311
platform_id: win_amd64
# - os: windows-latest
# python: 312
# platform_id: win_amd64

# Linux 64 bit manylinux2014
# Linux 64 bit manylinux2014
- os: ubuntu-latest
python: 38
platform_id: manylinux_x86_64
Expand All @@ -47,44 +44,76 @@ jobs:
python: 311
platform_id: manylinux_x86_64
manylinux_image: manylinux2014
# - os: ubuntu-latest
# python: 312
# platform_id: manylinux_x86_64
# manylinux_image: manylinux2014

# MacOS x86_64
- os: macos-latest
# MacOS 12 x86_64
- os: macos-12
python: 38
platform_id: macosx_x86_64
- os: macos-12
python: 39
platform_id: macosx_x86_64
- os: macos-12
python: 310
platform_id: macosx_x86_64
- os: macos-12
python: 311
platform_id: macosx_x86_64

# MacOS 13 x86_64
- os: macos-13
python: 38
platform_id: macosx_x86_64
- os: macos-latest
- os: macos-13
python: 39
platform_id: macosx_x86_64
- os: macos-latest
- os: macos-13
python: 310
platform_id: macosx_x86_64
- os: macos-latest
- os: macos-13
python: 311
platform_id: macosx_x86_64
# - os: macos-latest
# python: 312
# platform_id: macosx_x86_64

# MacOS arm64
# - os: macos-latest
# python: 38
# platform_id: macosx_arm64
# - os: macos-latest
# python: 39
# platform_id: macosx_arm64
# - os: macos-latest
# python: 310
# platform_id: macosx_arm64
# - os: macos-latest
# python: 311
# platform_id: macosx_arm64
# - os: macos-latest
# python: 312
# platform_id: macosx_arm64

# MacOS 14 x86_64
- os: macos-14-large
python: 38
platform_id: macosx_x86_64
- os: macos-14-large
python: 39
platform_id: macosx_x86_64
- os: macos-14-large
python: 310
platform_id: macosx_x86_64
- os: macos-14-large
python: 311
platform_id: macosx_x86_64

# MacOS 13 arm64
- os: macos-13-xlarge
python: 38
platform_id: macosx_arm64
- os: macos-13-xlarge
python: 39
platform_id: macosx_arm64
- os: macos-13-xlarge
python: 310
platform_id: macosx_arm64
- os: macos-13-xlarge
python: 311
platform_id: macosx_arm64

# MacOS 14 arm64
- os: macos-14
python: 38
platform_id: macosx_arm64
- os: macos-14
python: 39
platform_id: macosx_arm64
- os: macos-14
python: 310
platform_id: macosx_arm64
- os: macos-14
python: 311
platform_id: macosx_arm64

steps:
- name: Checkout PGBM
Expand Down
5 changes: 3 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 2.3.0 ##
* Added Python 3.11 and 3.12 testing scripts to wheel
* Update scikit-learn dependency requirement to 1.2
* Added Python 3.11 testing scripts to wheel
* Update scikit-learn minimum dependency requirement to 1.2
* Update MacOSX minimum dependency to MacOSX 10.13

## 2.1.2 ##
* Fixed bug in sklearn cython code
Expand Down

0 comments on commit 2f05d85

Please sign in to comment.