Eric Egli

Results 12 comments of Eric Egli

Same issue here. As per the docs: ```js // Promise loader .load() .then((google) => { new google.maps.Map(document.getElementById("map"), mapOptions); }) .catch(e => { // do something }); ``` I'd usually expect...

Hey @jacksteamdev - first of all, thank you for this awesome project. I was about to ask if you're planning on adding Manifest V3 support. For those who are stuck...

Generally, you don't need to. And you can't - since it's a client-side script. Just make sure that: 1. Your key has the right restrictions applied, e.g. HTTP referrers. You...

If you're okay with setting up a rather verbose spy, the following could work. I haven't tested it thoroughly though. Note that you will need to create the spy **after**...

I tried to setup a minimal example from `uv init` and it appears that the default index is correctly registered. Sorry for the fuzz. The actual problem may lie somewhere...

Here is a more stripped down configuration that replicates the problem, which exists for both adding and syncing deps. For now, let's ignore the index with the private packages. **pyproject.toml**...

I also cannot reproduce the issue outside of our corporate setup using test.pypi.org. Let's close the issue, could be that there are other factors involved outside of uv's control, such...

I have traced that and could not find a redirect. Looking at the requests through my local HTTP proxy from the _previous_ example, all requests go directly to pypi.org. Using...

The issue has now been identified. In all previous examples, I've had a minimal `uv.toml` config file for my user: ```toml native-tls = true ``` It appears that the **sheer...

I have not yet checked the effect of user and system-level configuration. But yes, both explicit `UV_CONFIG_FILE` and its alternative `--config-file` are affected.