python-dotenv v0.19.0 Release Notes
Release Date: 2021-07-24 // over 4 years ago-
๐ Changed
- ๐ Require Python 3.5 or a later version. Python 2 and 3.4 are no longer supported. (#341 by [@bbc2]).
โ Added
- The
dotenv_pathargument ofset_keyandunset_keynow has a type ofUnion[str, os.PathLike]instead of justos.PathLike(#347 by [@bbc2]). - The
streamargument ofload_dotenvanddotenv_valuescan now be a text stream (IO[str]), which includes values likeio.StringIO("foo")andopen("file.env", "r")(#348 by [@bbc2]).