Skip to content
Merged
Show file tree
Hide file tree
Changes from 14 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
1 change: 1 addition & 0 deletions README.md

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

3 changes: 3 additions & 0 deletions recipe/conda_build_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# We need defaults because we need the exact version of nodejs to build, which isn't on conda-forge
channel_sources:
- conda-forge,defaults
15 changes: 10 additions & 5 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "furo" %}
{% set version = "2021.10.9" %}
{% set version = "2022.2.23" %}


package:
Expand All @@ -8,23 +8,28 @@ package:

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/furo-{{ version }}.tar.gz
sha256: 2baa42a22ede3e6e95c6182ab364bac2ec15b79bc7f9ca7fb09fd9aec4b3540c
sha256: 005823b67f6ba00dde03e68dc78d437c72df7bcf816bcc6c111019c8faa7aa3d

build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv
script_env:
- STB_USE_SYSTEM_NODE=1

requirements:
host:
- flit-core >=2,<4
- pip
- python >=3.6
- flit-core >=2,<4
- sphinx-theme-builder
- nodejs ==16.13.1
run:
- python >=3.6
- sphinx >=4
- beautifulsoup4
- myst-parser
- pygments >=2.7
- python >=3.6
- sphinx >=4
- sphinx-inline-tabs


Expand Down