Skip to content

Commit

Permalink
Merge pull request #335 from mdekstrand/tweak/numba57
Browse files Browse the repository at this point in the history
Support Numba 0.58
  • Loading branch information
mdekstrand committed Oct 6, 2023
2 parents 38877a5 + b79a037 commit fa7e001
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- "3.8"
- "3.9"
- "3.10"
# - "3.11"
platform:
- macos
- windows
Expand Down Expand Up @@ -140,6 +141,7 @@ jobs:
- "3.8"
- "3.9"
- "3.10"
# - "3.11"
platform:
- windows
- ubuntu
Expand All @@ -154,6 +156,10 @@ jobs:
with:
python-version: ${{matrix.python}}

- name: Inspect environment
run: |
pip list
- name: Run tests
run: |
python -m pytest --cov=lenskit --cov-report=xml --log-file=test.log
Expand Down Expand Up @@ -185,6 +191,10 @@ jobs:
python -m pip install -c min-constraints.txt .[test]
python -m pip install pytest-cov
- name: Inspect environment
run: |
pip list
- name: Run tests
run: |
python -m pytest --cov=lenskit --cov-report=xml --log-file test.log
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
# "Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
]
Expand All @@ -24,7 +25,7 @@ dependencies = [
"pandas >=1.0, ==1.*",
"numpy >= 1.19",
"scipy >= 1.3.2",
"numba >= 0.51, < 0.57",
"numba >= 0.51, < 0.59",
"cffi >= 1.12.2",
"psutil >= 5",
"binpickle >= 0.3.2",
Expand Down

0 comments on commit fa7e001

Please sign in to comment.