Isuru Fernando

Results 928 comments of Isuru Fernando

I guess for testing we need to make a github container as in https://github.com/conda/conda/blob/main/.github/workflows/ci.yml#L105 ?

I think we should make a pip package that drops `wheel` and `setuptools` for `python>=3.13`, but keep them for `python

Any thoughts on the proposed action plan? I can send a PR if this sounds good.

You need ``` requirements: host: - python run: - python ``` instead of ``` requirements: build: - python run: - python ``` to host to work.

How do you intend to use logsumexp?

You can write it easily. In Python: ```python from symengine import Max, log, exp def logsumexp(*xs): maxval = Max(*xs) return log(sum([exp(x - maxval) for x in xs])) + maxval

@conda-forge/help-python this is ready.

@conda-forge/staged-recipes, this is ready for review