We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 59069a9 + 3428428 commit 2dfde86Copy full SHA for 2dfde86
2 files changed
bork/config.py
@@ -55,7 +55,7 @@ def from_project(cls, root: Path) -> 'Config':
55
try:
56
# Inefficient but necessary for compatibility with toml shim
57
# To be improved once Py3.10 support is removed
58
- pyproject = tomllib.loads((root / "pyproject.toml").read_text())
+ pyproject = tomllib.loads((root / "pyproject.toml").read_text(encoding="utf-8"))
59
except FileNotFoundError:
60
if any((root / fn).exists() for fn in ("setup.py", "setup.cfg")):
61
# Legacy setuptools project without Bork-specific config
bork/version.py
@@ -1,4 +1,4 @@
1
# This file should only ever be modified to change the version.
2
# This will automatically prepare and create a release.
3
4
-__version__ = '10.0.3'
+__version__ = '10.1.0'
0 commit comments