Martin Prüsse

Results 47 comments of Martin Prüsse

I was not aware of that sub command. Its is good to be make aware of that. But I see 2 problems: 1. Today conda-devenv will append when an environment...

We under the hood already just merge conda dependencies (creating a plain enviroment.yml) and foward the call to conda to solve the dependencies and create the enviroment. after that is...

There is #110 to add mamba support, but that is inactive for some time now.

Sorry, and about allow to pass arbitrary args to conda I aggree.

Note that the environment variables defined in the `env.devenv.yml` file are saved inside the conda environment and not present in the rendered `env.yml`.

Let me see if I did get that right. Given 3 files: ``` # aaa.devenv.yml name: AAA include: - another.devenv.yml ``` ``` # bbb.devenv.yml name: BBB include: - another.devenv.yml ```...

Yes. Our brains have problems to process negatives. `leave_here`... The first thing that come to my mind is an `is_root` but I think it is much similar to `root`(anoter var...

My bad, you are right `root` is relative to the current devenv file. Maybe we could deprecate the `root` variable naming and name it `file_location` (or `devenv_file_location`) since there is...

By "plugin system" you mean the entry points (similar to how pytest do)? I don't belive we should require that be are directly importable. Also, If we go with an...

We could relly on [jinja extensions (jinja docs)](http://jinja.pocoo.org/docs/2.10/extensions/#example-extension)... but boy that looks complicated.