Daniel Possenriede

Results 144 comments of Daniel Possenriede

Probably the same bug with ``` komac update Atlassian.Sourcetree --version 3.4.21 --urls https://product-downloads.atlassian.com/software/sourcetree/windows/ga/SourcetreeEnterpriseSetup_3.4.21.msi ```

@teras Sync your fork https://github.com/teras/winget-pkgs so your `master` branch is up to date with `microsoft/winget-pkgs:master` and `komac update ...` again. Your fork being out of sync with ~~origin~~ upstream is...

Similar issue with wingetcreate: https://github.com/microsoft/winget-create/issues/502

Could it be that these fine-grained permissions do not grant permission to open a PR in microsoft/winget-pkgs?

That's also great, but then it is inconsistent, because there are badges (in the main page, not the sidebar) on e.g.: - [bikedata](https://docs.ropensci.org/bikedata/ "Download and Aggregate Data from Public Hire...

> pkgdown only filters out the `` block then, I assume. Uh, maybe not. Counterexample: [rotl](https://docs.ropensci.org/rotl/ "Interface to the Open Tree of Life API • rotl") has badges, and a...

> [pkgdown.r-lib.org/reference/build_home.html#dev-badges](https://pkgdown.r-lib.org/reference/build_home.html#dev-badges) I _think_ rotl passes those requirements (I read them as "or" reqs). Maybe they show up because the badges block comes before the title?

> It would be great if the limitation with Windows was implemented for standard `pyproject.toml` files, as `"ansible-lint>=24.9.2 ; sys_platform != 'Windows'` is [the PEP standard](https://peps.python.org/pep-0508/). That seems to be...

AFAIU the issue is as follows: `uv` is creating a [universal/cross-platform project lockfile](https://docs.astral.sh/uv/concepts/projects/#project-lockfile), i.e. it is trying to resolve a package (in this case `ansible-lint`) for all platforms, so also...

@ssbarnea You're confusing the [uv pip interface](https://docs.astral.sh/uv/getting-started/features/#the-pip-interface)¹ with the [uv project interface](https://docs.astral.sh/uv/getting-started/features/#projects)². The pip interface doesn't use `uv.lock` files. Steps to reproduce: ```python uv init uv add ansible-lint uv pip...