Update pythonpackage.yml #343
This file contains hidden or 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: Python package | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: '0 0 1 * *' | |
| jobs: | |
| code-quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.10" | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Create venv | |
| run: | | |
| uv venv --no-project --no-config --no-managed-python rpy2-arrow-env | |
| - name: Lint with flake8 | |
| run: | | |
| source rpy2-arrow-env/bin/activate | |
| uv pip install flake8 | |
| flake8 rpy2_arrow --count --max-complexity=10 --max-line-length=127 --statistics | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| max-parallel: 4 | |
| matrix: | |
| python-version: [3.8, 3.9, "3.10", "3.11" ,"3.12"] | |
| r-version: ['release'] | |
| os: [ubuntu-22.04, ubuntu-latest, macOS-latest] | |
| include: | |
| - os: ubuntu-22.04 | |
| SYSTEM_DEPS: sudo apt-get install -y libcurl4-gnutls-dev | |
| - os: ubuntu-latest | |
| SYSTEM_DEPS: sudo apt-get install -y libcurl4-gnutls-dev | |
| - os: macOS-latest | |
| SYSTEM_DEPS: brew install curl | |
| exclude: | |
| - python-version: "3.12" | |
| os: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Set up R ${{ matrix.r-version }} | |
| uses: r-lib/actions/setup-r@v2 | |
| with: | |
| r-version: ${{ matrix.r-version }} | |
| - name: Install system dependencies | |
| run: ${{ matrix.SYSTEM_DEPS }} | |
| - name: Patch GHA issue with macos - Missing C library | |
| if: startsWith(matrix.os, 'macos') | |
| shell: bash | |
| run: | | |
| LIB_ARCHIVES=(\ | |
| libdeflate-1.23-darwin.20-arm64.tar.xz \ | |
| zstd-1.5.5-darwin.20-arm64.tar.xz \ | |
| ) | |
| for name in "${LIB_ARCHIVES[@]}" | |
| do | |
| curl -LO https://mac.r-project.org/bin/darwin20/arm64/"${name}" | |
| sudo tar xJf "${name}" -C / | |
| done | |
| - uses: r-lib/actions/setup-r-dependencies@v2 | |
| with: | |
| cache-version: 2 | |
| extra-packages: | | |
| any::assertthat | |
| any::cpp11 | |
| any::tidyselect | |
| any::vctrs | |
| any::R6 | |
| any::purrr | |
| any::bit64 | |
| - name: Install R arrow package | |
| run: | | |
| Sys.setenv("NOT_CRAN" = "true") | |
| install.packages("arrow") | |
| shell: Rscript {0} | |
| - name: Install R dependency "polars" (MacOS) | |
| if: startsWith(matrix.os, 'MacOS') | |
| run: | | |
| install.packages("nanoarrow") | |
| install.packages("polars", repos = "https://rpolars.r-universe.dev") | |
| shell: Rscript {0} | |
| - name: Install R dependency "polars" (Linux) | |
| if: startsWith(matrix.os, 'ubuntu') | |
| run: | | |
| install.packages("nanoarrow") | |
| Sys.setenv(NOT_CRAN = "true") | |
| install.packages("polars", repos = "https://community.r-multiverse.org") | |
| shell: Rscript {0} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| - name: Create venv | |
| run: | | |
| uv venv --no-project --no-config --no-managed-python rpy2-arrow-env | |
| - name: Install dependencies | |
| run: | | |
| source rpy2-arrow-env/bin/activate | |
| uv pip install --upgrade pip | |
| uv pip install -r requirements.txt | |
| uv pip install git+https://github.com/rpy2/rpy2-r6 | |
| - name: Build package | |
| run: | | |
| source rpy2-arrow-env/bin/activate | |
| uv pip install build | |
| python -m build | |
| - name: Install package | |
| run: | | |
| source rpy2-arrow-env/bin/activate | |
| uv pip install $(ls -t1 dist/*.whl | tail -1)'[all]' | |
| - name: Test with pytest | |
| run: | | |
| source rpy2-arrow-env/bin/activate | |
| export LD_LIBRARY_PATH=$(python -m rpy2.situation LD_LIBRARY_PATH) | |
| uv pip install pytest codecov pytest-cov | |
| uv pip install pandas | |
| pytest --cov rpy2_arrow.pyarrow_rarrow --cov rpy2_arrow.r6b --cov rpy2_arrow.polars rpy2_arrow/tests*.py |