-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
add recipe for finch-tensor-lite #32124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
1c6bea4
8fcb61d
b6e5426
ecbc4cc
a9c3937
36866a5
9e98af5
e3b43e8
01019f7
3ce18bb
7575d7e
f49bc7d
2d61843
ccb980e
79b2d9b
ff4887b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,67 @@ | ||
| context: | ||
| version: "0.2.0" | ||
|
|
||
| package: | ||
| name: finch-tensor-lite | ||
| version: ${{ version }} | ||
|
|
||
| source: | ||
| - url: https://pypi.org/packages/source/f/finch-tensor-lite/finch_tensor_lite-${{ version }}.tar.gz | ||
| sha256: 8ab19b0a7efc007549788213c1d5fbe3c54a40aad9e90240d8d4d34d08bd883b | ||
| - git: https://github.com/finch-tensor/finch-tensor-lite.git | ||
| tag: v${{ version }} | ||
| target_directory: repo | ||
|
|
||
| build: | ||
| skip: | ||
| - match(python, "<3.11") | ||
| - win | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. run dependency on a c-compiler seems to be fiddly for windows |
||
| python: | ||
| version_independent: true | ||
| script: uv pip install --python ${{ PYTHON }} . -vv --no-deps | ||
| number: 0 | ||
|
|
||
| requirements: | ||
| host: | ||
| - python | ||
| - uv | ||
| - poetry-core <3.0 | ||
| run: | ||
| - python | ||
| - numpy <2.4 | ||
| - numba <0.63.1 | ||
| - donfig <0.9.0 | ||
| - lark <2.0.0 | ||
|
Comment on lines
+28
to
+34
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. pins taken from upstream |
||
| - gcc # c-compiler after https://github.com/conda-forge/compilers-feedstock/pull/78 | ||
|
|
||
| tests: | ||
| - python: | ||
| imports: | ||
| - finchlite | ||
| pip_check: true | ||
| - script: | ||
| - pytest -ra repo/tests --ignore-glob=repo/tests/reference/* | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| requirements: | ||
| run: | ||
| - python | ||
| - pytest | ||
| - pytest-regressions | ||
| - sparse | ||
| - scipy | ||
| files: | ||
| source: | ||
| - repo/tests/ | ||
| - pyproject.toml | ||
|
|
||
| about: | ||
| homepage: https://github.com/finch-tensor/finch-tensor-lite | ||
| summary: Sparse Tensor Programming in Pure Python | ||
| description: Sparse Tensor Programming in Pure Python | ||
| license: MIT | ||
| license_file: | ||
| - LICENSE | ||
| - src/finchlite/codegen/stc/LICENSE | ||
|
|
||
| extra: | ||
| recipe-maintainers: | ||
| - lucascolley | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
upstream does not ship tests in the sdist, so we grab them from the repo instead