Claudio Verdú Ruiz
Claudio Verdú Ruiz
I realized this was intended when I read your release notes here in github. It's just weird that, and the end of the day, I have only notes on prereleases...
After this I found the out-of-the-box job and it worked perfectly (https://github.com/python-semantic-release/python-semantic-release/blob/8.0.x/docs/github-action.rst). I stopped working on this custom approach.
@SvenStaehs When I want to publish a package, it's naming has to follow PEP440, which doesn't allow freestyle after "-", but it does after "+". https://peps.python.org/pep-0440/ I didn't want to...
Look at this: When in my pyproject.toml I have `version = "0.1.0-mybranch"`: ```bash root@463c049d255f:/workspace# poetry build Invalid version '0.1.0-mybranch' on package repo-template ``` But if `version = "0.1.0-rc1+mybranch"` ```bash root@463c049d255f:/workspace#...
@bernardcooke53 I've been trying the 8.x alpha and the build meta works for me :) Thank you so much. However, I miss a couple of things from the stable version:...
Every point described makes sense. However, about the -D: - Imagine I have dozens of projects, all supposed to work the same way wrt semantic-release. With stable version I can...
Helo @stollcri , @manishs17, I've had problems building the image via Docker with: ``` FileNotFoundError: [Errno 2] No such file or directory: 'llvm-config' [...] ERROR: Failed building wheel for llvmlite...
@justinchuby I don't think I understand the question. I want to have the cumprod operation computed inside the ONNX model, as it fastest than any alternative and convenient for my...
How does that change the fact that I need that operation? I still don't understand. If you're thinking about a workaround, there isn't. I need to compute the cumulative product...
I want to compute the cumulative density function of survivability inside my model graph, given that I'm predicting N steps, being each step S the probability of survival given survivability...