2024-11-11 08:29:31 by Thomas Klausner | Files touched by this commit (862) |
Log message:
py-*: remove unused tool dependency
py-setuptools includes the py-wheel functionality nowadays
|
2024-01-28 09:14:02 by Thomas Klausner | Files touched by this commit (1) |
Log message:
py-dotenv: add missing tools
|
2024-01-23 14:34:09 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-dotenv: updated to 1.0.1
1.0.1
**Fixed**
* Gracefully handle code which has been imported from a zipfile
* Allow modules using load_dotenv to be reloaded when launched in a separate thread
* Fix file not closed after deletion, handle error in the rewrite function
**Misc**
* Use pathlib.Path in tests
* Fix year in release date in changelog.md
* Use https in README links
|
2023-05-22 14:25:07 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-dotenv: updated to 1.0.0
1.0.0
**Fixed**
* Drop support for python 3.7, add python 3.12-dev
* Handle situations where the cwd does not exist.
|
2023-01-25 10:26:21 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-dotenv: updated to 0.21.1
0.21.1
Added
* Use Python 3.11 non-beta in CI
* Modernize variables code
* Modernize main.py and parser.py code
* Improve conciseness of cli.py and __init__.py
* Improve error message for `get` and `list` commands when env file can't be opened
* Updated Licence to align with BSD OSI template
Fixed
* Fix Out-of-scope error when "dest" variable is undefined
* Fix IPython test warning about deprecated `magic`
* Fix type hint for dotenv_path var, add StrPath alias
|
2022-09-08 17:21:59 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-dotenv: updated to 0.21.0
0.21.0
Added
* CLI: add support for invocations via 'python -m'.
* `load_dotenv` function now returns `False`.
* CLI: add --format= option to list command.
Fixed
* Drop Python 3.5 and 3.6 and upgrade GA
* Use `open` instead of `io.open`.
* Improve documentation for variables without a value
* Add `parse_it` to Related Projects by
* Update README.md by
* Improve documentation with direct use of MkDocs by
|
2022-07-21 11:38:30 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-dotenv: updated to 0.20.0
0.20.0
Added
- Add `encoding` (`Optional[str]`) parameter to `get_key`, `set_key` and `unset_key`.
Fixed
- Use dict to specify the `entry_points` parameter of `setuptools.setup`
- Don't build universal wheels
|
2022-01-05 16:41:32 by Thomas Klausner | Files touched by this commit (289) |
Log message:
python: egg.mk: add USE_PKG_RESOURCES flag
This flag should be set for packages that import pkg_resources
and thus need setuptools after the build step.
Set this flag for packages that need it and bump PKGREVISION.
|
2022-01-04 21:55:40 by Thomas Klausner | Files touched by this commit (1595) |
Log message:
*: bump PKGREVISION for egg.mk users
They now have a tool dependency on py-setuptools instead of a DEPENDS
|
2021-11-25 09:13:28 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-dotenv: updated to 0.19.2
0.19.2
Fixed
- In `set_key`, add missing newline character before new entry if necessary.
0.19.1
Added
- Add support for Python 3.10.
0.19.0
Changed
- Require Python 3.5 or a later version. Python 2 and 3.4 are no longer supported.
by [@bbc2]).
Added
- The `dotenv_path` argument of `set_key` and `unset_key` now has a type of \
`Union[str,
os.PathLike]` instead of just `os.PathLike`
- The `stream` argument of `load_dotenv` and `dotenv_values` can now be a text stream
(`IO[str]`), which includes values like `io.StringIO("foo")` and \
`open("file.env",
"r")`
0.18.0
Changed
- Raise `ValueError` if `quote_mode` isn't one of `always`, `auto` or `never` in
`set_key`
- When writing a value to a .env file with `set_key` or `dotenv set <key> \
<value>`
- Use single quotes instead of double quotes.
- Don't strip surrounding quotes.
- In `auto` mode, don't add quotes if the value is only made of alphanumeric \
characters
(as determined by `string.isalnum`).
0.17.1
Fixed
- Fixed tests for build environments relying on `PYTHONPATH`
[0.17.0
Changed
- Make `dotenv get <key>` only show the value, not `key=value`
Added
- Add `--override`/`--no-override` option to `dotenv run`
0.16.0
Changed
- The default value of the `encoding` parameter for `load_dotenv` and \
`dotenv_values` is
now `"utf-8"` instead of `None`
- Fix resolution order in variable expansion with `override=False`
|