-
-
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 solara and solara-assets packages #22935
Closed
Closed
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
2a04f3f
Add solara and solara-assets packages
giswqs 9480fb7
ignore flit_core
giswqs 245b310
Set Python version lower bound
giswqs 2226ed7
Lower ipyvuetify version
giswqs 3078c64
Add flit-core package
giswqs e73f444
Add flit_core
giswqs d828bc5
Add hom and doc url
giswqs e725ebb
Update flit-core name
giswqs 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,42 @@ | ||
{% set name = "flit-core" %} | ||
{% set version = "3.9.0" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/flit_core-{{ version }}.tar.gz | ||
sha256: 72ad266176c4a3fcfab5f2930d76896059851240570ce9a98733b658cb786eba | ||
|
||
build: | ||
noarch: python | ||
script: {{ PYTHON }} -m pip install . -vv | ||
number: 0 | ||
|
||
requirements: | ||
host: | ||
- python >=3.6 | ||
- pip | ||
run: | ||
- python >=3.6 | ||
|
||
test: | ||
imports: | ||
- flit_core | ||
commands: | ||
- pip check | ||
requires: | ||
- pip | ||
|
||
about: | ||
home: https://github.com/pypa/flit | ||
summary: Distribution-building parts of Flit. See flit package for more information | ||
dev_url: https://github.com/pypa/flit | ||
license: BSD-3-Clause | ||
license_file: LICENSE | ||
doc_url: https://flit.pypa.io | ||
|
||
extra: | ||
recipe-maintainers: | ||
- giswqs |
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,44 @@ | ||
{% set name = "solara-assets" %} | ||
{% set version = "1.15.0" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/solara_assets-{{ version }}.tar.gz | ||
sha256: d1cce6851ada7c23eff8af0e235f571c8bba0474319249cad46cd0cde2f69190 | ||
|
||
build: | ||
noarch: python | ||
script: {{ PYTHON }} -m pip install . -vv | ||
number: 0 | ||
|
||
requirements: | ||
host: | ||
- python >=3.7 | ||
- hatchling >=0.25 | ||
- pip | ||
run: | ||
- python >=3.7 | ||
- solara | ||
|
||
test: | ||
imports: | ||
- solara_assets | ||
commands: | ||
- pip check | ||
requires: | ||
- pip | ||
|
||
about: | ||
home: https://github.com/widgetti/solara | ||
summary: Build webapps using IPywidgets | ||
license: MIT | ||
license_family: MIT | ||
license_file: LICENSE | ||
doc_url: https://solara.dev | ||
|
||
extra: | ||
recipe-maintainers: | ||
- giswqs |
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,76 @@ | ||
{% set name = "solara" %} | ||
{% set version = "1.15.0" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/solara-{{ version }}.tar.gz | ||
sha256: c995a293fe7f4e26cdb83bf1902ff8891741886cbcdca38e00daddba0a49dc1d | ||
|
||
build: | ||
entry_points: | ||
- solara = solara.__main__:main | ||
noarch: python | ||
script: {{ PYTHON }} -m pip install . -vv | ||
number: 0 | ||
|
||
requirements: | ||
host: | ||
- python >=3.7 | ||
- flit-core >=3.2,<4 | ||
- pip | ||
run: | ||
- python >=3.7 | ||
- reacton >=1.7.1 | ||
- ipywidgets | ||
- cachetools | ||
- filelock | ||
- markdown | ||
- pygments | ||
- pymdown-extensions | ||
- markdown-it-py | ||
- mdit-py-plugins | ||
- humanize | ||
- ipyvuetify >=1.8.4 | ||
- ipyvue >=1.9.0 | ||
- numpy | ||
- pillow | ||
- jinja2 | ||
- markupsafe <2.1 | ||
- pydantic | ||
- click >=7.1.0 | ||
- rich-click | ||
- uvicorn | ||
- watchgod | ||
- websockets | ||
- starlette | ||
- nbconvert | ||
- jupyter_server | ||
- jupyter_client >=7.0.0 | ||
- watchdog | ||
- requests | ||
- nbformat | ||
- ipykernel | ||
|
||
test: | ||
imports: | ||
- solara | ||
commands: | ||
- pip check | ||
- solara --help | ||
requires: | ||
- pip | ||
|
||
about: | ||
home: https://github.com/widgetti/solara | ||
summary: Build webapps using IPywidgets | ||
license: MIT | ||
license_family: MIT | ||
license_file: LICENSE | ||
doc_url: https://solara.dev | ||
|
||
extra: | ||
recipe-maintainers: | ||
- giswqs |
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.
flit-core
is provided byflit-feedstock
multi-output recipe, which also demonstrates howsolora(-assets)
can be built in the samemeta.yaml
. All feedstocks -> packages can be seen on https://conda-forge.org/feedstock-outputs/