Statistics on ParquetFile
subset. (#940)
#680
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PyPi wheels | |
on: [push, pull_request] | |
jobs: | |
buildLinxaarch: | |
if: startsWith(github.ref, 'refs/tags/20') | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-22.04] | |
architecture: ['x64'] | |
include: | |
# https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip | |
- os: ubuntu-22.04 | |
linux_archs: "aarch64" | |
name: ${{ matrix.os }} ${{ matrix.architecture }} ${{ matrix.linux_archs }} | |
env: | |
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}" | |
CIBW_BEFORE_ALL: "pip install numpy cython" | |
CIBW_SKIP: "pp* *37* *38* *-musllinux_aarch64" | |
CIBW_ARCHS_LINUX: ${{ matrix.linux_archs }} | |
CIBW_TEST_SKIP: "*" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Set up QEMU | |
if: runner.os == 'Linux' | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: all | |
- name: Add msbuild to PATH | |
if: runner.os == 'Windows' | |
uses: microsoft/setup-msbuild@v2 | |
- name: delvewheel install | |
if: runner.os == 'Windows' | |
run: | | |
python -m pip install delvewheel cython | |
- name: Build wheels | |
uses: joerick/[email protected] | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
name: wheels | |
buildLinx686: | |
if: startsWith(github.ref, 'refs/tags/20') | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-22.04] | |
architecture: ['x64'] | |
include: | |
# https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip | |
- os: ubuntu-22.04 | |
linux_archs: "i686" | |
skip: "pp*" | |
name: ${{ matrix.os }} ${{ matrix.architecture }} ${{ matrix.linux_archs }} | |
env: | |
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}" | |
CIBW_BEFORE_ALL: "pip install cython" | |
CIBW_SKIP: ${{ matrix.skip }} | |
CIBW_ARCHS_LINUX: ${{ matrix.linux_archs }} | |
CIBW_TEST_SKIP: "*" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Set up QEMU | |
if: runner.os == 'Linux' | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: all | |
- name: Add msbuild to PATH | |
if: runner.os == 'Windows' | |
uses: microsoft/setup-msbuild@v2 | |
- name: delvewheel install | |
if: runner.os == 'Windows' | |
run: | | |
python -m pip install delvewheel cython | |
- name: Build wheels | |
uses: joerick/[email protected] | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
name: wheels | |
buildLinx86x64: | |
if: startsWith(github.ref, 'refs/tags/20') | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-22.04] | |
architecture: ['x64'] | |
include: | |
# https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip | |
- os: ubuntu-22.04 | |
linux_archs: "x86_64" | |
skip: "pp*" | |
name: ${{ matrix.os }} ${{ matrix.architecture}} | |
env: | |
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}" | |
CIBW_BEFORE_ALL: "pip install cython" | |
CIBW_SKIP: ${{ matrix.skip }} | |
CIBW_ARCHS_LINUX: ${{ matrix.linux_archs }} | |
CIBW_TEST_SKIP: "*" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Set up QEMU | |
if: runner.os == 'Linux' | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: all | |
- name: Add msbuild to PATH | |
if: runner.os == 'Windows' | |
uses: microsoft/setup-msbuild@v2 | |
- name: delvewheel install | |
if: runner.os == 'Windows' | |
run: | | |
python -m pip install delvewheel cython | |
- name: Build wheels | |
uses: joerick/[email protected] | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
name: wheels | |
buildWin: | |
if: startsWith(github.ref, 'refs/tags/20') | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest] | |
architecture: ['x64'] | |
include: | |
# https://cibuildwheel.readthedocs.io/en/stable/options/#build-skip | |
- os: windows-latest | |
skip: "*2*win* *win32 pp*" | |
name: ${{ matrix.os }} ${{ matrix.architecture}} | |
env: | |
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}" | |
CIBW_BEFORE_ALL: "pip install cython" | |
CIBW_SKIP: ${{ matrix.skip }} | |
CIBW_ARCHS_LINUX: ${{ matrix.linux_archs }} | |
CIBW_TEST_SKIP: "*" | |
CIBW_BEFORE_TEST: "git status" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Set up QEMU | |
if: runner.os == 'Linux' | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: all | |
- name: Add msbuild to PATH | |
if: runner.os == 'Windows' | |
uses: microsoft/setup-msbuild@v2 | |
- name: delvewheel install | |
if: runner.os == 'Windows' | |
run: | | |
python -m pip install delvewheel cython | |
- name: Build wheels | |
uses: joerick/[email protected] | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
name: wheels | |
buildMAC: | |
if: startsWith(github.ref, 'refs/tags/20') | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest] | |
architecture: ["universal2", "arm64"] | |
name: ${{ matrix.os }} ${{ matrix.architecture}} | |
env: | |
CIBW_BEFORE_ALL: "pip install numpy==2.0.0rc1 cython" | |
CIBW_SKIP: "pp* *37* *38*" | |
CIBW_ARCHS_MACOS: ${{ matrix.architecture }} | |
CIBW_TEST_SKIP: "*" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Build wheels | |
uses: joerick/[email protected] | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
name: wheels |