Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e140a28

Browse files
committed
Fix conda build for new repo structure
1 parent 6014071 commit e140a28

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/python/plotly/recipe/meta.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
{% set data = load_setup_py_data() %}
1+
{% set data = load_setup_py_data(setup_file='../setup.py', from_recipe_dir=True) %}
22
{% set version = data.get('version') %}
33

44
package:
55
name: plotly
66
version: {{ version }}
77

88
source:
9-
path: ../
9+
path: ../../../../
1010

1111
build:
1212
number: 0
13-
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -q"
13+
script: "cd packages/python/plotly; {{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -q"
1414
noarch: python
1515

1616
requirements:

0 commit comments

Comments
 (0)