Pure python packages created from nbdev settings.ini
conda_output_path('fastai','2.1.0')
This function is used in the fastrelease_conda_package
CLI command.
NB: you need to first of all upload your package to PyPi, before creating the conda package.
To build and upload a conda package, cd to the root of your repo, and then:
fastrelease_conda_package
Or to do things more manually:
fastrelease_conda_package --do_build false
cd conda
conda build --no-anaconda-upload --output-folder build {name}
anaconda upload build/noarch/{name}-{ver}-*.tar.bz2
Add --debug
to the conda build command
to debug any problems that occur. Note that the build step takes a few minutes. Add -u {org_name}
to the anaconda upload
command if you wish to upload to an organization, or pass upload_user
to fastrelease_conda_package
.
NB: you need to first of all upload your package to PyPi, before creating the conda package.