Isuru Fernando

Results 938 comments of Isuru Fernando

You can do something like, ```python And(Ne(x, 0), Ne(y, 0)) ```

There are only a handful of people who contributes to the development (rather than the requests) and I don't think any of us use pixi.

Yes. Shall I open a new PR then?

> I had another think on this and while this could be solved as conditional dependency, it could still be listed under build_to_build. We could add the following condition. `build_to_build`...

> Once the upstream package run:-depends on foo >=2, that export would be superfluous, as the dependency would come along for the ride in any environment where the package gets...

I don't know why everyone is talking about conditional dependencies. This is not about adding a dependency to `host` if it's conda-build. This is about transitive exports. i.e. if `foo`...

> You can write your own CEP for that Sure

Nice that we are finding paths forward! Is this similar to the solution I proposed in https://github.com/conda/ceps/pull/129#issuecomment-3249504891, or does it differ in some way? If that’s the case, can you...

We can't do that for Add, Mul, etc since we keep a dictionary for performance reasons. For eg: `1 + x + x` becomes `1, {x: 2}` `2 + y...