fusion-energy / brep_part_finder

A Python package to identify the part ID number in Brep format CAD files
MIT License
0 stars 0 forks source link

conda build not producing all python versions #16

Closed shimwell closed 2 years ago

shimwell commented 2 years ago

This github action https://github.com/fusion-energy/brep_part_finder/blob/main/.github/workflows/anaconda-publish.yml

runs a conda build command

conda build conda -c cadquery -c conda-forge --config-file conda/conda_build_config.yaml

Three versions of python are specified in the conda_build_config.yaml https://github.com/fusion-energy/brep_part_finder/blob/main/conda/conda_build_config.yaml

However only one file gets uploaded to anaconda and this does not have a python version attached to the name https://anaconda.org/fusion-energy/brep_part_finder/files

I am not quite sure why the conda build is not picking up all the python versions available for cadquery master

Any ideas @adam-urbanczyk

shimwell commented 2 years ago

this command is much quicker to build the package but requires that mamba is installed

conda mambabuild conda -c cadquery -c conda-forge --config-file conda/conda_build_config.yaml
shimwell commented 2 years ago

Changing the github action to use the super fast mamba boa builder fixed the issue :tada: