sigma67

Results 198 comments of sigma67

Not sure if this is exactly your use case, but you can write a backend plugin: https://backend.pdm-project.org/hooks/#distribute-the-hook-as-a-plugin We have created https://github.com/pdm-project/pdm-build-locked to add extras to project metadata on build. The...

Semi-related, is there any way to exclude code blocks with ``pragma: no cover``? It seems to only ignore the line that the no cover statement is on ```python if condition:...

Current workaround: set ``` suppress_warnings = ["config.cache"] ```

Thanks for the quite useful suggestion and pointer to the docs. May I suggest to remove the incorrect way from the documentation then to avoid leading users into this error?...

It seems the astral.sh folks are focusing on integrating with [rye](https://github.com/astral-sh/rye), which now uses `uv` as its [backend for locking and dependency installation](https://github.com/astral-sh/rye?tab=readme-ov-file#in-the-box) So there's probably significant overlap with #25273...

Same issue here. Perhaps it's related to the go version? I'm using 1.14 On go version 1.13.8 I get: `github.com/mgechev/revive/fixtures/golint imports nosuchpkg: malformed module path "nosuchpkg": missing dot in first...

Good to hear. 1. We are using sphinxcontrib-plantuml. Our plantuml wrapper in PATH looks something like this ```sh !/bin/sh if [ -n "${JAVA_HOME}" ] && [ -x "${JAVA_HOME}/bin/java" ] ;...

Hi, thanks for providing the fix and snapshot, we just tested it. Unfortunately it doesn't seem to work. Setup below. Prior to 2024.5 we didn't need to set this variable....

> Yes, sorry for the inconvenience. This change was implemented due to security warnings. It's designed to enhance security, especially when the server is accessible from the Internet, and prevent...

I have uppercased the variable now and it fixed the issue 🥳 I was under the impression that JAVA doesn't care about the casing, apparently that is not so.