You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi community, I am using boa to build my local python pkg called widget. I am also using boa to build two other pkges jupyter_enterprise_gateway (JEG) and SparkMagic that I am applying patches from local. Everything is working fine for JEG and SparkMagic after building the RPM from the conda package. However the widget pkg I am building, there is some issue. I have checked building logs, and it looks like in the packaging stage, there is something wrong. For both JEG and SparkMagic, I can see log
I can see these info from conda pkg tarball /infos/files, and after mamba install, I can also see the packages get installed under conda env /boo/foo/lib/python3.9/site-packages.
ls /boo/foo/lib/python3.9/site-packages | grep spark
sparkmagic
sparkmagic-0.20.0.dist-info
ls /boo/foo/lib/python3.9/site-packages | grep jupyter_enterprise_gateway
jupyter_enterprise_gateway-2.6.0.dist-info
However, for this widget package, I am seeing
Adding files for widget
ATTENTION: No files added in target widget
In the tarball /infos/files, it's empty. In my conda env /boo/foo/lib/python3.9/site-packages, I don't see it either.
This widget pkg is a small tool I build locally. Previously when using conda against python 3.7, it's working fine. Now I am using boa, so the recipe got changed from meta.yaml to recipe.yaml. Also I am using python 3.9 as conda-index that is used for indexing local packages is only working for python 3.8 onwards. The recipe doesn't have any actual change other than syntax.
What could potentially be wrong so that this can happen?
Some information I can think of to provide context for any help:
python 3.9
boa 0.15.1
The script to build widget pkg in the recipe.yaml is
I have the same issue, and for me it works with Python 3.10, but not with 3.11.
What I noticed is that there is a line set "SP_DIR=%PREFIX%\Lib\site-packages" in both outputs, but with Python 3.10 it ends up in "%PREFIX\Lib\python3.10\site-package". Is the SP_DIR wrong maybe?
I found a workaround though: add --prefix=%PREFIX% to the pip instruction.
Hi community, I am using boa to build my local python pkg called widget. I am also using boa to build two other pkges jupyter_enterprise_gateway (JEG) and SparkMagic that I am applying patches from local. Everything is working fine for JEG and SparkMagic after building the RPM from the conda package. However the widget pkg I am building, there is some issue. I have checked building logs, and it looks like in the packaging stage, there is something wrong. For both JEG and SparkMagic, I can see log
I can see these info from conda pkg tarball
/infos/files
, and aftermamba install
, I can also see the packages get installed under conda env/boo/foo/lib/python3.9/site-packages
.However, for this widget package, I am seeing
In the tarball
/infos/files
, it's empty. In my conda env/boo/foo/lib/python3.9/site-packages
, I don't see it either.This widget pkg is a small tool I build locally. Previously when using
conda
againstpython 3.7
, it's working fine. Now I am usingboa
, so the recipe got changed frommeta.yaml
torecipe.yaml
. Also I am usingpython 3.9
asconda-index
that is used for indexing local packages is only working for python 3.8 onwards. The recipe doesn't have any actual change other than syntax.What could potentially be wrong so that this can happen?
Some information I can think of to provide context for any help:
The script to build widget pkg in the
recipe.yaml
isPlease let me know if any other information is needed for some extra insight. Thanks!
The text was updated successfully, but these errors were encountered: