Marcel Bargull

Results 101 comments of Marcel Bargull
trafficstars

> Having a bunch of data in the feedstock that changes every time a person does a rerender is very distracting to me. Or when I request a rerender with...

Oh, apparently I had I typo in `meta.yaml` because ```yaml build: script: - set "CMAKE_GENERATOR={{ CMAKE_GENERATOR }}" # [win] ``` didn't seem to work when I tried it first. But...

Note that, for example, a HTTP server might differentiate between URLs with and without slashes. Thus removing a trailing slash in all cases wouldn't be desirable.

Since @verdimrc used a double quoted string, that is a valid YAML flow scalar, so no issue there. The problem is ```python extract_pattern = r'(.*)package:' ```` from https://github.com/conda/conda-build/blob/3.2.2/conda_build/metadata.py#L1835 that is...

``` DEBUG conda.resolve:solve(938): Looking for alternate solutions DEBUG conda.common.logic:sat(435): Invoking SAT with clause count: 8017 DEBUG conda.common.toposort:_safe_toposort(80): Cyclic dependencies exist among these items: 'appdirs' -> 'automat' -> 'conda' -> 'constantly'...

@abhinavankur and @robjane , until gh-7115is fixed, running a `conda update -n base conda` before installing anything else to `base` will probably workaround your issue.

> I proceeded as you mentioned with `conda update -n base conda`. I ran into an HTTP error that presumably only temporally occurs Yeah, had that too this morning. Just...

It is ``` conda config --add pinned_packages defaults::conda ``` instead of `--set` since `pinned_packages` is a sequence parameter and thus need to be changed with `--add`/`--remove`. You should use that...

Moreover I'd encourage you to explore the beauty of using separate Conda environments: That way you can avoid many issues and leave the `base` environment to `conda` etc. alone and...

@noobida, you are likely running an old version, i.e., `conda =4.4`, you can and should use `conda update -n base conda` for new updates.)