FAQ¶
(Q) How to address permission denied (publickey)
in circle builds?
When you see this error in a circle build:
Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. Exited with code 128open a new issue with a comment @conda-forge-admin, please update circle. Once our web services have updated the circle configuration, restart the build.
(Q) Why does conda-build ignore the py37
selector in meta.yaml?
TL;DR: replace
py37
withpy==37
.conda-build has changed the selector syntax. You are now encouraged to use
py==<version>
, instead ofpy<version>
. While the legacy selectorspy27
andpy36
are still valid, selectorspy37
and higher are no longer valid.Please use the new syntax
py==27
,py==36
andpy==37
to avoid confusion.
(Q) What do build numbers above 1000 signify? How do I treat them?
TL;DR: there is no need for build numbers larger than 1000 anymore.
When you update a feedstock that still uses build numbers > 1000, the following rules apply:
when you increase the version, reset the build number back to 0 (e.g.
1005 -> 0
).when the version stays the same and you need to upload a new package, increase the build number by 1 (e.g.
1005 -> 1006
).Backstory: Build numbers of 1000 and larger are a relic from the compiler migration, where a build number offset of 1000 signified that a package was migrated to the new compilers. Since the completion of the compiler migration, this offsetting is not needed anymore. However, we cannot simply subtract the offset without updating the version, due to higher build numbers being preferred by the solver. Therefore build numbers above 1000 will gradually vanish as packages get updated to newer versions.
(Q) How to fix CMake not finding MSBuild.exe on Azure Windows builds?
TL;DR: Use
Ninja
orNMake Makefiles JOM
as the CMake generator (cmake -G"Ninja"
), and addbuild
requirements forninja
orjom
.Sadly in the Azure Windows images, MSBuild.exe is not correctly setup for CMake builds with the
Visual Studio
generators. To work around this, you can use a different CMake generator, e.g.cmake -GNinja
orcmake -G"NMake Makefiles JOM"
. These two are preferred because they allow for concurrent builds in contrast to e.g. only usingcmake -G"NMake Makefiles"
(Q) Why does my new version appear on Anaconda Cloud, but is not installable with conda?
For certain, high-traffic channels (main & conda-forge), Anaconda uses a CDN to decrease costs. The CDN is only reindexed every 20 minutes, however `Anaconda.org https://anaconda.org>`_ uses the original channel that the CDN mirrors. Therefore, packages will show up on the `Anaconda Cloud https://anaconda.org>`_ about 20 to 40 minutes before they are downloadable via conda. You can use
conda search <pkg>
to see if the package is installable, because this command reads from the CDN.