Skip to content

Commit

Permalink
Merge pull request #278 from mdekstrand/feature/upgrade-numba
Browse files Browse the repository at this point in the history
Support Numba 0.54
  • Loading branch information
mdekstrand committed Oct 22, 2021
2 parents 3261285 + e80e653 commit 84a66a8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
exclude:
- platform: macos
python: 3.9
- python: 3.7
blas: mkl

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -128,14 +130,17 @@ jobs:
activate-environment: lktest
environment-file: ${{steps.conda-lock.outputs.environment-file}}

- name: Insepct envonment
run: numba -s

- name: Download ML-100K
shell: pwsh
run: |
./fetch-datasets.ps1 ml-100k
- name: Install for Testing
run: |
flit install -s --deps develop --extras tf
flit install -s --deps none
- name: Run Tests
run: |
Expand Down Expand Up @@ -224,12 +229,14 @@ jobs:
vanilla:
name: Vanilla Python ${{matrix.python}} on ${{matrix.platform}}
runs-on: ${{matrix.platform}}-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
python:
- 3.7
- 3.8
- 3.9
platform:
- windows
- ubuntu
Expand All @@ -250,7 +257,7 @@ jobs:
PIP_PREFER_BINARY: 'true'
run: |
python -m pip install -U flit
flit install --deps develop --pth-file
python -m pip install .[test,dev]
- name: Run tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ requires = [
"pandas >= 0.24",
"numpy >= 1.17",
"scipy >= 1.2",
"numba >= 0.51, < 0.54",
"numba >= 0.51, < 0.55",
"cffi >= 1.12.2",
"psutil >= 5",
"binpickle >= 0.3.2",
Expand Down

0 comments on commit 84a66a8

Please sign in to comment.