This repository has been archived by the owner on Apr 9, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 15
Upload script fails with conda_build >= 2.0.0 #28
Comments
The following change around line 25 to the try:
fname = bldpkg_path(meta)
except TypeError:
# conda-build >= 2.0.0 takes a config argument
from conda_build.config import Config
config = Config()
fname = bldpkg_path(meta, config) I would appreciate hearing what @msarahan or @pelson thinks of this change. |
That change would be fine. |
Yep, I'd merge this. |
basnijholt
added a commit
to basnijholt/conda-forge-build-setup-feedstock
that referenced
this issue
Sep 3, 2016
This is now fixed, and conda-smithy is now directing feedstocks at the script in this repo. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Copied from conda-forge/conda-smithy#282
conda build version 2.0.0 changed the call signature of the
bldpkg_path()
function so that it now takes a secondconfig
argument. This breaks theupload_or_check_non_existence.py
script in conda-smithy, see conda-forge/doctr-feedstock#5.A temporary fix which pins
conda-build
to 1.x was made in #27 but should be reverted once the upload script is updated to account for this new call signature.The text was updated successfully, but these errors were encountered: