-
-
Notifications
You must be signed in to change notification settings - Fork 5k
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
Add datacube-compute #28143
base: main
Are you sure you want to change the base?
Add datacube-compute #28143
Conversation
A library with fast implementations of algorithms for processing satellite images! Repo at https://github.com/auspatious/datacube-compute
Hi! This is the staged-recipes linter and your PR looks excellent! 🚀 |
Hi! This is the friendly automated conda-forge-linting service. I wanted to let you know that I linted all conda-recipes in your PR ( Here's what I've got... For recipes/datacube-compute/recipe.yaml:
|
Silence conda-forge linter messag: `The top level meta key schema_version is unexpected`
Getting this error at https://dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=1074934&view=logs&j=4cabe686-70ae-553a-7fd0-310379f2cbac&t=6a4fc7c9-c31a-5115-eff9-6479d72b69ff&l=904:
Might need to patch how Edit: Oh wait, forgot about using |
This reverts commit 55b0a9b.
Not sure what conda-recipe-manager was doing in the conversion process.
Define it another way following https://github.com/conda/ceps/blob/main/cep-0014.md#script-section
This reverts commit 2f2c4df.
Until I can figure out how to pass the SETUPTOOLS_SCM_PRETEND_VERSION environment variable properly.
recipes/datacube-compute/recipe.yaml
Outdated
recipe-maintainers: | ||
- weiji14 |
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.
@alexgleith, ok if I put you down as a conda-forge recipe maintainer for datacube-compute
(need a yes/no answer)?
recipe-maintainers: | |
- weiji14 | |
recipe-maintainers: | |
- alexgleith | |
- weiji14 |
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.
Yes!
- SETUPTOOLS_SCM_PRETEND_VERSION=${{ version }} ${{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation | ||
skip: win |
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.
Haven't quite figured out the syntax to set an environment variable after looking at https://github.com/conda/ceps/blob/main/cep-0014.md#script-section (see attempt at 2f2c4df), so skipping Windows builds for now to workaround the SyntaxError.
@conda-forge/help-rust @conda-forge/help-python, ready for review! The linter is complaining that a c-compiler is needed, though I'm not sure if that is needed for a Rust (with Python bindings) package? |
number: 0 | ||
script: | ||
- cargo-bundle-licenses --format yaml --output THIRDPARTY.yml | ||
- SETUPTOOLS_SCM_PRETEND_VERSION=${{ version }} ${{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation |
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.
For windows support
- SETUPTOOLS_SCM_PRETEND_VERSION=${{ version }} ${{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation | |
- set SETUPTOOLS_SCM_PRETEND_VERSION=${{ version }} # [win] | |
- export SETUPTOOLS_SCM_PRETEND_VERSION=${{ version }} # [unix] | |
- ${{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation |
A library with fast implementations of algorithms for processing satellite images! Repo at https://github.com/auspatious/datacube-compute
Checklist
url
) rather than a repo (e.g.git_url
) is used in your recipe (see here for more details).