top | item 47150600

(no title)

apothegm | 4 days ago

Concern about proprietary tools. Preferring tools written in the language they’re for. Comfort level. Not feeling they need anything uv offers over poetry. Not bought in to aspects of its architecture (ex: centralized deps). Already having infrastructure and tooling built on poetry. Not perceiving meaningful ROI in learning entirely new tooling for incremental gains.

Poetry is still quite useful. Heck, pipenv is still quite useful. For 95% of use cases, so long as you’re using one of those instead of plain old venv + requirements.txt, you’ll be fine.

discuss

order

kelipso|4 days ago

I was using pipenv for a while…I think it was useful because I was using different python versions maybe. Then I discovered python -m venv, put all my venvs in a directory in a fast hard drive, along with a venv.sh script that activates the environment with whatever custom stuff I want and I never could find use for any of these environment managers after that. Replication is pyproject.toml and activating the environment is “. venv.sh” what’s hard about that.