Skip to content

Commit

Permalink
Merge pull request #380 from bashtage/ci-numba
Browse files Browse the repository at this point in the history
CI: Add numba to a run
  • Loading branch information
bashtage authored Oct 1, 2024
2 parents 011a9c7 + 36cff59 commit 366347b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
10 changes: 7 additions & 3 deletions ci/azure/azure_template_posix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,13 @@ jobs:
NUMPY: 1.26.4
python310_latest:
python.version: '3.10'
python311_latest_numpy_2:
python.version: '3.11'
NUMPY: 2.0.0
NUMPY: 2.0.2
python311_numpy_numba:
python.version: '3.12'
NUMPY: 2.0.2
NUMBA: 0.60.0
USE_NUMBA: true
USE_SCIPY: true
python311_latest:
python.version: '3.11'
python312_latest:
Expand Down
1 change: 1 addition & 0 deletions ci/azure/install-posix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ CMD="$CMD pandas"
CMD="$CMD $EXTRA"
if [[ ${USE_CONDA} == "true" ]]; then CMD="$CMD numba"; fi;
if [[ ${USE_SCIPY} == "true" ]]; then CMD="$CMD scipy"; fi;
if [[ ${USE_NUMBA} == "true" ]]; then CMD="$CMD numba==$NUMBA"; fi;
echo $CMD
eval $CMD

Expand Down

0 comments on commit 366347b

Please sign in to comment.