-
-
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 RISE recipe #5098
Add RISE recipe #5098
Changes from all commits
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,3 @@ | ||
"%PYTHON%" setup.py install | ||
"%PREFIX%\Scripts\jupyter-nbextension.exe" install rise --py --sys-prefix | ||
if errorlevel 1 exit 1 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
"${PYTHON}" setup.py install | ||
"${PREFIX}/bin/jupyter-nbextension" install rise --py --sys-prefix |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{% set name = "rise" %} | ||
{% set version = "5.2.0" %} | ||
{% set sha256 = "514eb8784b8d4f7c2af4ba77055fd7a7d8365a87e55eb118d2f7a3ea400dbd7b" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
fn: {{ name }}-{{ version }}.tar.gz | ||
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz | ||
sha256: {{ sha256 }} | ||
|
||
build: | ||
noarch: python | ||
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. This is an important change compared with the current situation where I create pkgs for each architecture. 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. Now I'm not sure if |
||
number: 0 | ||
|
||
requirements: | ||
build: | ||
- python | ||
- notebook >=5.0.0 | ||
run: | ||
- python | ||
- notebook >=5.0.0 | ||
|
||
test: | ||
requires: | ||
- python | ||
- notebook >=5.0.0 | ||
|
||
about: | ||
home: https://github.com/damianavila/RISE | ||
license: BSD 3-Clause | ||
license_file: LICENSE.md | ||
summary: 'Reveal.js - Jupyter/IPython Slideshow Extension' | ||
description: | | ||
Reveal.js - Jupyter/IPython Slideshow Extension, also known as live_reveal. | ||
Quickly turn your Jupyter Notebooks into a live presentation. | ||
|
||
|
||
extra: | ||
recipe-maintainers: | ||
- Juanlu001 | ||
- damianavila |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
"%PREFIX%\Scripts\jupyter-nbextension.exe" enable rise --py --sys-prefix | ||
if errorlevel 1 exit 1 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"${PREFIX}/bin/jupyter-nbextension" enable rise --py --sys-prefix | ||
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. Not for now but when damianavila/RISE#342 lands, we should modify and delete this post steps, because there will be no needed anymore... 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. sure, we can update the recipe after that :) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
"%PREFIX%\Scripts\jupyter-nbextension" disable rise --py --sys-prefix | ||
if errorlevel 1 exit 1 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"${PREFIX}/bin/jupyter-nbextension" disable rise --py --sys-prefix |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"%PREFIX%\python.exe" -c "print('placeholder')" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"${PREFIX}/bin/python" -c "print('placeholder')" |
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 is not for now... but in the future we should think if this is the proper incantation, check #528 for a long discussion about that...