Jay Qi

Results 146 comments of Jay Qi
trafficstars

+1 for this being something that is useful and that I expected from a locking tool. My use case is that I want to maintain a lockfile that specifies an...

@jimporter ~I have a use case for this and it's actually in fact complementing the `canonical_version` feature.~ ~I previously was not using `canonical_version` on my site, and Google indexed all...

On further investigation, I don't think a combined sitemap index actually solves my problem. Based on Google's [docs](https://developers.google.com/search/docs/crawling-indexing/consolidate-duplicate-urls#sitemap-method), it seems like you're only supposed to include canonical URLs in the...

Am I understanding correctly that this is a particular case of the environment `config` dictionary not supporting context formatting? If that is so, I have a different use case where...

@ofek from following the code, it seems like plugin-specific config options still go through `EnvironmentInterface.config`. https://github.com/pypa/hatch/blob/cfa05386f9dc4a029462a23a38d0885176efbaac/src/hatch/env/plugin/interface.py#L158-L165 Wouldn't both `path` and these other plugin-specific config options all end up supporting context...

This does sound annoying, but I'm unsure about whether there is a sensible solution on our end given the other uses of `.fspath`. Is there a way to prevent the...

@pjbull I was thinking about this case some more, and I think this supports the strategy that we want to implement #322 _and_ remove support for `.fspath`. It's a [convention/expectation](https://stackoverflow.com/a/20506966)...

> The original issue suggests adding the dirs_exist_ok functionality through mkdir. Using mkdir on S3Path doesn't actually create a directory, since we can't make empty directories in cloud storage. Adding...

The procedure described in this article sounds promising as a way for us to run the tests in a safe manner with maintainer approval: https://dev.to/petrsvihlik/using-environment-protection-rules-to-secure-secrets-when-building-external-forks-with-pullrequesttarget-hci

With the caveat that I remember only like 5% of what we're doing here, how it works, why it works a certain way: - I don't think considering the target...