This repository was archived by the owner on Oct 15, 2025. It is now read-only.
v1.0.0
-------------------------
Backwards incompatible changes:
* Dropped support for Python 2.7. Everett no longer supports Python 2. (#73)
* Dropped support for Python 3.3 and added support for Python 3.7. Thank you,
pjz! (#68)
* Moved ``ConfigIniEnv`` to a different module. Now you need to import it
like this::
from everett.ext.inifile import ConfigIniEnv
(#79)
Features:
* Everett now logs configuration discovery in the ``everett`` logger at the
``logging.DEBUG`` level. This is helpful for trouble-shooting some kinds of
issues. (#74)
Fixes:
* Everett no longer requires ``configobj``--it's now optional. If you use
``ConfigIniEnv``, you can install it with::
$ pip install everett[ini]
(#79)
* Fixed list parsing and file discovery in ConfigIniEnv so they match the
docs and are more consistent with other envs. Thank you, apollo13! (#71)
* Added a ``.basic_config()`` for fast opinionated setup that uses the
process environment and a ``.env`` file in the current working directory.
* Switching to semver.
0