this post was submitted on 01 Aug 2026
120 points (99.2% liked)

Programmer Humor

43143 readers
13 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 7 years ago
MODERATORS
 

I was just editing my Dockerfile and suddenly IntelliJ showed me the message "No" without any context.

top 24 comments
sorted by: hot top controversial new old
[–] eager_eagle@lemmy.world 39 points 1 week ago (1 children)

It's right, you shouldn't be using requirements.txt in 2026

[–] Mickkc@lmy.ndu.wtf 14 points 1 week ago (6 children)

What should I use instead? pyproject.toml?

I am pretty new to Python so I'm not very familiar with the ecosystem yet...

[–] aBundleOfFerrets@sh.itjust.works 27 points 1 week ago (1 children)

It’s not important what you should be doing, just that requirements.txt ‘No’

[–] Mickkc@lmy.ndu.wtf 21 points 1 week ago (1 children)
[–] eldavi@lemmy.ml 5 points 1 week ago* (last edited 1 week ago)

I'm a dinosaur still using vim but I'd consider switching IDE's if they had this much snarky behavior. Lol

[–] eager_eagle@lemmy.world 20 points 1 week ago (2 children)

yes, and give uv a try

https://docs.astral.sh/uv/getting-started/installation/

uv init + project management commands uv add, uv remove, uv sync, uv run my_spaghetti.py, ...

you probably don't need pip or uv pip commands

and here's how to use it in docker

https://docs.astral.sh/uv/guides/integration/docker/

[–] BlameTheAntifa@lemmy.world 7 points 1 week ago (2 children)
[–] eager_eagle@lemmy.world 14 points 1 week ago (1 children)

I used poetry for years before uv, but uv is just a better tool. If openai enshittifies it, I have no doubt it'll be forked instantly.

[–] BlameTheAntifa@lemmy.world 3 points 1 week ago (2 children)

Think about what they get by controlling a popular package manager. Think about what you give them.

You will not feel the consequences directly.

[–] eager_eagle@lemmy.world 11 points 1 week ago (1 children)

what I do feel is how slow poetry is for resolving dependencies

[–] NotSteve_@lemmy.ca 5 points 1 week ago

Yeah I used to be a huge advocate for Poetry and convinced my previous company to switch to it but it's painfully slow when compared to UV so I can't go back

[–] HetareKing@piefed.social 9 points 1 week ago

Doesn't uv just use PyPI for its packages (i.e. it's not talking to any servers owned by them)? There's the possibility of hijinks on the client side, of course, but it would be hard to do without anyone noticing and causing a huge stink about it.

I'd say the more worrying aspects of uv is the use of AI in its development even before OpenAI bought them out and what's going to happen to it after OpenAI eventually goes under.

[–] jtrek@startrek.website 8 points 1 week ago

Fuck. Fuck all this AI slop.

[–] Mickkc@lmy.ndu.wtf 5 points 1 week ago* (last edited 1 week ago)

That looks really convenient, especially when installing and switching Python versions. I'll keep that in mind. Thanks!

[–] bamboo@lemmy.blahaj.zone 5 points 1 week ago (2 children)

Curious what others have to say, but my go to is to have a requirements.in with direct packages I need for the project, and then run pip-compile to generate all the dependencies with their exact version at the time so that deployments are repeatable. This works well for deployment, but if I were writing a library for others to use, I think you put the direct dependencies in setup.py

[–] Mickkc@lmy.ndu.wtf 2 points 1 week ago (2 children)

I don't quite understand that. I did some research, and I read that the requirements.txt is somehow generated from requirements.in. But what is the difference between the two files then? Could you give me an example of what a requirements.in file would look like?

Thank you!

[–] scrion@lemmy.world 5 points 1 week ago

Please use a pyproject.toml file for both project setup and dependency management. It actually is standardized now in PEPs.

uv is a great tool, now comes with a build tool as well. It has become a de-facto standard.

[–] Mickkc@lmy.ndu.wtf 2 points 1 week ago* (last edited 1 week ago) (1 children)

Ohhh now I get it. It's basically like package.json and package-lock.json in node, but for Python.

It's a bit strange to me that this isn't the default in Python...

[–] bamboo@lemmy.blahaj.zone 3 points 1 week ago

Yes exactly, like if I know my app needs the requests library, I will just put that in requirements.in but after compile requirements.txt will include the exact version of requests and every version of each dependency. So that every time pip install is run, all dependencies are always the same despite what happens upstream

[–] AnnaFrankfurter@lemmy.ml 1 points 1 week ago (1 children)

Why not put all dependencies and all with versions. I do that

[–] bamboo@lemmy.blahaj.zone 4 points 1 week ago

Well if the requirements.txt is pinned to a specific version of a dependency of a dependency, you might not know or really care why that's set. But then this becomes a nightmare and dependency hell laterif you want a newer version of some package, and that newer version requires a bunch of newer packages and loses the others. At that point you probably will toss your old file and start a new one from scratch piecing together all the requirements with like pip freeze in a new virtual environment.

Sure you could omit the versions, but then everytime you deploy, you don't know what you're going to get and a deployment today would be very different next week with a whole bunch of different versions of dependencies.

[–] assaultpotato@sh.itjust.works 5 points 1 week ago* (last edited 1 week ago)

uv + pyproject.toml. and any other answers like "poetry" are objectively wrong

[–] assaultpotato@sh.itjust.works 4 points 1 week ago

also ty + ruff for linting and type checking, basically if Astral makes it its probably worth using.

[–] pineapple@lemmy.ml 1 points 1 week ago

uv and pyproject.toml is so much easier than pip and requirements.txt