Skip to content

Commit

Permalink
Merge pull request #2258 from mabel-dev/joocer/issue2253
Browse files Browse the repository at this point in the history
Joocer/issue2253
  • Loading branch information
joocer authored Jan 16, 2025
2 parents 4083b41 + 97c4b6c commit 29e00db
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 13 deletions.
22 changes: 10 additions & 12 deletions .github/workflows/regression_suite_arm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,21 @@ jobs:
regression_matrix:
strategy:
max-parallel: 4
fail-fast: false
matrix:
python-version: ['3.11']
runs-on: raspberry
container:
# Runner docker image
image: ubuntu:22.04
python-version: ['3.10', '3.11', '3.12']
os: [ubuntu-24.04-arm]
runs-on: ${{ matrix.os }}
steps:

- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }} x64
if: matrix.os == 'ubuntu-latest'
- name: Set up Python ${{ matrix.python-version }}
if: matrix.os == 'ubuntu-24.04-arm'
uses: buildjet/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
cache: pip

- name: Install Rust
Expand All @@ -34,10 +32,10 @@ jobs:

- name: Install Requirements
run: |
python -m pip install --upgrade pip uv
python -m uv pip install --upgrade numpy==1.* cython
python -m uv pip install --upgrade -r $GITHUB_WORKSPACE/tests/requirements.txt
python -m uv pip install --upgrade -r $GITHUB_WORKSPACE/requirements.txt
python -m pip install --upgrade pip
python -m pip install --upgrade numpy==1.* cython
python -m pip install --upgrade -r $GITHUB_WORKSPACE/tests/requirements.txt
python -m pip install --upgrade -r $GITHUB_WORKSPACE/requirements.txt
python setup.py build_ext --inplace
- name: "Authenticate to Google Cloud"
Expand Down
2 changes: 1 addition & 1 deletion opteryx/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__build__ = 989
__build__ = 993

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down

0 comments on commit 29e00db

Please sign in to comment.