Thoughts on OpenAI acquiring Astral and uv/ruff/ty

(simonwillison.net)

81 points | by jt-hill 2 days ago ago

26 comments

  • vivzkestrel 2 days ago ago

    what is stopping the poetry guys to rewrite poetry from the ground up as part of a breaking new release?

    • skrtskrt 17 hours ago ago

      I liked Poetry until I went to contribute a bugfix to the codebase and quickly realized it was already an ossified nightmare.

    • redrove 2 days ago ago

      What happened to Poetry? did it just not gain enough traction? I was under the impression it was the hot new thing a few years back then uv comes out of nowhere.

      • sseagull 2 days ago ago

        I thought the same thing. Just a few years ago, everyone here was proclaiming Poetry was great, the python ecosystem was finally tamed, pip/conda/setuptools was dead, and every project and developer needs to adopt it.

        Now it’s just a has-been. The churn in python is incredible.

        • steve_adams_86 5 hours ago ago

          It's almost like you're talking about JavaScript. I use Python here and there but wasn't aware of this kind of thrash

      • ardeaver a day ago ago

        The news of this acquisition has made me too scared to admit that I actually have no issues Poetry.

      • ForHackernews a day ago ago

        uv is much much faster, but has substantially the same feature set as poetry.

        • conartist6 10 hours ago ago

          Yeah. There was a wave of "rebuild it in Rust" companies and my complaint with all of them is that they became largely from-spec reimplementations of existing tools with little imagination of their own. The Rust projects are a fraction of the age of the scripted ones and they already feel ossified.

          I'm not just talking about Astral here, I'm talking about the JS equivalents too like Biome and VoidZero which basically took the existing ossified architectures and made them gospel -_-

          • simonw 9 hours ago ago

            That's not a good interpretation of Astral and uv.

            uv is way more than a rewrite in Rust of Poetry or pip - it has a metric ton of smart design decisions that are independent of the language it was written in, both in terms of what it does and how it speeds things up under the hood.

            https://nesbitt.io/2025/12/26/how-uv-got-so-fast.html is a useful review of some of the architectural tricks they came up with.

    • fud101 2 days ago ago

      they have bad taste obviously otherwise we'd all be using their project

      • androiddrew a day ago ago

        Yes, when the poetry people purposely added a feature to fail CI with a 1/10 chance because they wanted to depreciate a feature, I depreciated poetry.

  • curiousgal 2 days ago ago

    Not to gatekeep things but if you think uv solved python dependency issues then you probably never had those issues in the first place and pip would have been enough for your use case. Conda on the other hand, with external binary dependencies, now we're talking.

    • necubi 2 days ago ago

      I’m someone who is not a python developer but has to use python tools and run other people’s python code. I have suffered through learning about anaconda, virtualenv, pip, and more. Uv is the first time there’s a tool that just runs the software without requiring me to become a python ecosystem expert

    • simonw 2 days ago ago

      The key issue uv solved wasn't dependencies, it was environments.

      I used to have hundreds of venv folders scattered around my machine. These days I use "uv run" or "uvx" or "uv run --with boto3 python" and uv handles all of the bookkeeping for me.

      • bmitc 2 days ago ago

        Poetry had already solved that.

        • simonw 2 days ago ago

          What's the poetry equivalent of this?

            uv run --with boto3 python
          • bmitc 2 days ago ago

            The claim was:

            > The key issue uv solved wasn't dependencies, it was environments.

            and not specific, niche features.

            I don't know of such a command in Poetry, but it could still be solved with dev groups or running Python in the virtual environment and installing the package.

            • simonw 2 days ago ago

              That command is an environment command. It runs Python in a temporary environment with boto3 installed - I use that trick all the time.

        • saaspirant 2 days ago ago

          It was very slow compared to uv

          • bmitc 2 days ago ago

            Yes, but it still solves dependencies and environments.

            • pixl97 a day ago ago

              "Solves one problem by introducing another, possibly worse problem"

              And you wonder why people didn't adopt it.

    • 2 days ago ago
      [deleted]
    • freehorse a day ago ago

      Well it is much faster so you can keep iterating installing dependencies until you fix the issue in much less time

  • ChrisArchitect 2 days ago ago
    • gjvc 2 days ago ago

      [flagged]

  • pugchat 2 days ago ago

    [dead]