Skip to content

Commit 0ce8d62

Browse files
committed
make_release: specified larray-project as user when calling conda build
1 parent 4929079 commit 0ce8d62

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

make_release.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
PACKAGE_NAME = "larray-editor"
2222
SRC_CODE = "larray_editor"
2323
SRC_DOC = join('doc', 'source')
24+
CONDA_BUILD_ARGS = {'--user': 'larray-project'}
2425

2526
GITHUB_REP = "https://github.com/larray-project/larray-editor"
2627
CONDA_FEEDSTOCK_REP = "https://github.com/larray-project/larray-editor-feedstock.git"
@@ -66,4 +67,5 @@ def update_version_in_json_used_by_menuinst(config):
6667
update_feedstock(GITHUB_REP, CONDA_FEEDSTOCK_REP, SRC_CODE, *argv, tmp_dir=TMP_PATH_CONDA)
6768
else:
6869
local_repository = abspath(dirname(__file__))
69-
make_release(local_repository, PACKAGE_NAME, SRC_CODE, *argv[1:], src_documentation=SRC_DOC, tmp_dir=TMP_PATH)
70+
make_release(local_repository, PACKAGE_NAME, SRC_CODE, *argv[1:], src_documentation=SRC_DOC, tmp_dir=TMP_PATH,
71+
conda_build_args=CONDA_BUILD_ARGS)

0 commit comments

Comments
 (0)