anthony sottile

Results 159 comments of anthony sottile

hmmm I'm seeing a situation where `SEGMENT_DOWNLOAD_TIMEOUT_MIN` seems to not have worked here's the workflow run: https://github.com/getsentry/sentry/actions/runs/3113974617/jobs/5049272594 it's a little obscured but the environment variable is set at the workflow...

we've been running identical code (we pin github actions to a sha) so I doubt it has changed. I've never seen it successfully time out a run but github actions...

in my situation, in addition to taking a bunch of CPU the update also allocated ~8.6GB of ram which was not freed after the update (eventually leading to OOM). using...

just so I have a little more context -- is this meant to be a tool that we support and keep indefinitely? shouldn't developers just drop their old databases and...

I think (?) this is the same problem -- using bun 0.1.3 on linux x86_64: here's a minimal reproduction: ```console $ cat package.json {"dependencies": {"chokidar": "*"}} $ bun install --yarn...

is there a problem with a cycle there? it's already cyclical but the metadata doesn't match that

in my experience poetry handles cycles fine -- do you have a link to a failure there?

for (1) a lot of our javascript build and packaging depends on setuptools command which are [deprecated](https://setuptools.pypa.io/en/latest/deprecated/commands.html). not only that, invoking them through `pip` is fairly slow and difficult to...

the last time I tried this the following happens when you yank every version: ```bash pip install whatever==1.2.3 # succeeds, shows message pip install whatever>=1.2.3 # errors, no versions avaialable...

for example: ```console $ pip install --no-deps -i https://test.pypi.org/simple aspy.yaml Looking in indexes: https://test.pypi.org/simple ERROR: Could not find a version that satisfies the requirement aspy.yaml (from versions: 0.2.0, 1.3.0) ERROR:...