You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, this project uses Pipenv to manage pip and virtual environments together. While Pipenv has some benefits, the project has largely been sunsetted. This suggests three options:
Migrate to using Poetry as a replacement for Pipenv. Poetry is gaining popularity as a package and environment handling tool with several benefits and wide adoption so far. Poetry has a good developer experience and allows folks to avoid setting up and managing Python versions and virtual environments manually.
Use a conventional requirements.txt file without any environment handling. This is the conventional way for Python projects to handle environments, but can lead to confusion with handling virtual environments and changing Python versions.
Keep using Pipenv and don't change anything.
This is a smallish Python project that doesn't require any packages to be published nor does it have regular "builds" of an application.
Personally, I'm in favour of 1, but I'd like to see what other folks think!
The text was updated successfully, but these errors were encountered:
Currently, this project uses Pipenv to manage pip and virtual environments together. While Pipenv has some benefits, the project has largely been sunsetted. This suggests three options:
This is a smallish Python project that doesn't require any packages to be published nor does it have regular "builds" of an application.
Personally, I'm in favour of 1, but I'd like to see what other folks think!
The text was updated successfully, but these errors were encountered: