Skip to content
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

Update recipe for v1.0.0 #25

Merged
merged 7 commits into from
Nov 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .azure-pipelines/azure-pipelines-linux.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 15 additions & 7 deletions .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .scripts/logging_utils.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .scripts/run_docker_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{% set version = "0.17.2" %}
{% set version = "1.0.0" %}

package:
name: myst-nb
version: {{ version }}

source:
url: https://pypi.io/packages/source/m/myst-nb/myst-nb-{{ version }}.tar.gz
sha256: 0f61386515fab07c73646adca97fff2f69f41e90d313a260217c5bbe419d858b
url: https://pypi.io/packages/source/m/myst-nb/myst_nb-{{ version }}.tar.gz
sha256: 9077e42a1c6b441ea55078506f83555dda5d6c816ef4930841d71d239e3e0c5e

build:
number: 0
OriolAbril marked this conversation as resolved.
Show resolved Hide resolved
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --ignore-installed
script: {{ PYTHON }} -m pip install . -vv --no-deps --ignore-installed --no-build-isolation
entry_points:
- mystnb-docutils-html = myst_nb.docutils_:cli_html
- mystnb-docutils-html5 = myst_nb.docutils_:cli_html5
Expand All @@ -30,13 +30,13 @@ requirements:
- importlib-metadata
- ipykernel
- ipython
- jupyter-cache >=0.5.0,<0.7.0
- myst-parser >=0.18.0,<0.19.0
- jupyter-cache >=0.5.0
- myst-parser >=1.0.0
- nbclient
- nbformat >=5.0,<6
- python >=3.7
- nbformat >=5.0
- python >=3.9
- pyyaml
- sphinx >=4,<6
- sphinx >=5
- typing_extensions

test:
Expand Down