Skip to content

Commit cb01379

Browse files
committed
adjust paths
1 parent 32adcc3 commit cb01379

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.circleci/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ jobs:
384384
eval "$(conda shell.bash hook)"
385385
conda activate env
386386
python setup.py sdist bdist_wheel
387-
cp -R dist ../../../output/dist
387+
cp -R dist output/dist
388388
git status
389389
390390
- run:
@@ -393,7 +393,7 @@ jobs:
393393
eval "$(conda shell.bash hook)"
394394
conda activate env
395395
conda build recipe/
396-
mv /opt/conda/envs/env/conda-bld/noarch/plotly*.tar.bz2 ../../../output
396+
mv /opt/conda/envs/env/conda-bld/noarch/plotly*.tar.bz2 output/
397397
git status
398398
399399
- run:
@@ -455,7 +455,7 @@ jobs:
455455
cd js
456456
npm ci
457457
npm run build
458-
cd ../../../../doc
458+
cd ../doc
459459
fi
460460
cd ..
461461
- run:
@@ -534,7 +534,7 @@ jobs:
534534
pip uninstall -y plotly
535535
cd ..
536536
pip install -e .
537-
cd ../../../doc
537+
cd doc
538538
cd apidoc
539539
make html
540540
cd _build/html

recipe/meta.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@ package:
66
version: {{ version }}
77

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

1111
build:
1212
number: 0
1313
script: |
14-
cd packages/python/plotly
1514
{{ PYTHON }} setup.py sdist
1615
{{ PYTHON }} -m pip install dist/plotly-{{ version }}.tar.gz --no-deps --ignore-installed --no-cache-dir -q
1716
noarch: python

0 commit comments

Comments
 (0)