-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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 icechunk recipe #28803
Open
andersy005
wants to merge
22
commits into
conda-forge:main
Choose a base branch
from
andersy005:add-icechunk-recipe
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+54
−0
Open
add icechunk recipe #28803
Changes from 15 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
7d54276
add icechunk recipe
andersy005 08b6b8c
update icechunk recipe to use a variable for minimum Python version
andersy005 48007a6
specify rust compiler
andersy005 d9da764
fix: remove unnecessary comment
andersy005 e396a02
add stdlib
andersy005 bd66599
build for unsupported Python versions and adjust requirements
andersy005 e63073f
fix: remove cargo-bundle-licenses from build and requirements
andersy005 c85f410
feat: add maturin as a requirement for building and hosting
andersy005 d0fde11
fix: add cargo-bundle-licenses to build requirements
andersy005 c0a61cc
feat: add build script for icechunk using maturin
andersy005 54ea878
disable build script
andersy005 bcf9e85
refactor: remove build script and update versioning in meta.yaml
andersy005 fae0c1c
fix: update version format in meta.yaml for icechunk
andersy005 84980e9
fix: update sha256 checksum for icechunk source in meta.yaml
andersy005 da1108f
change directory before installation in meta.yaml
andersy005 15ce90d
Apply suggestions from code review
andersy005 b5e8692
Merge branch 'main' into add-icechunk-recipe
andersy005 fc7a324
Fix build script order in icechunk recipe
andersy005 85063a2
Update recipes/icechunk/meta.yaml
andersy005 06f2d83
Merge branch 'main' into add-icechunk-recipe
andersy005 ea79bbd
Merge branch 'main' into add-icechunk-recipe
andersy005 1045563
Update icechunk version format and source URL in meta.yaml
andersy005 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{% set name = "icechunk" %} | ||
{% set version = "0.1.0a10" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://github.com/earth-mover/icechunk/archive/refs/tags/icechunk-v0.1.0-alpha.10.tar.gz | ||
andersy005 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
sha256: ee775475e4ec46ba24d620365a31f873efc639a7d7df3a9a0b1b21d68563f762 | ||
|
||
build: | ||
skip: true # [py<311 or python_impl == 'pypy'] | ||
script: | ||
- cd icechunk-python | ||
andersy005 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation | ||
number: 0 | ||
|
||
requirements: | ||
build: | ||
- {{ compiler('c') }} | ||
- {{ stdlib('c') }} | ||
- {{ compiler('rust') }} | ||
- maturin >=1.7,<2.0 | ||
andersy005 marked this conversation as resolved.
Show resolved
Hide resolved
andersy005 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
host: | ||
- python | ||
- maturin >=1.7,<2.0 | ||
- poetry-core | ||
- pip | ||
run: | ||
- python | ||
- zarr >=3 | ||
|
||
test: | ||
imports: | ||
- icechunk | ||
commands: | ||
- pip check | ||
requires: | ||
- pip | ||
|
||
about: | ||
home: https://github.com/earth-mover/icechunk | ||
summary: Transactional storage engine for Zarr designed for use on cloud object storage | ||
license: Apache-2.0 | ||
license_file: LICENSE | ||
andersy005 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
extra: | ||
recipe-maintainers: | ||
- andersy005 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This one falls under https://github.com/conda-forge/cfep/blob/main/cfep-05.md
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.
unless i'm missing something, this guide doesn't seem to have any examples of how to apply this to packages in
staged-recipes
before they have a feedstock repo.any tips on how to do this?