mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 06:34:16 +00:00
ignore utf8 errors in setup.py on windows
This commit is contained in:
parent
6022cbc5f4
commit
1960ec517c
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -23,7 +23,7 @@ PROJECT_URLS = {
|
|||
ROOT_DIR = Path(__file__).parent.resolve()
|
||||
PACKAGE_DIR = ROOT_DIR / PKG_NAME
|
||||
|
||||
README = (PACKAGE_DIR / "README.md").read_text()
|
||||
README = (PACKAGE_DIR / "README.md").read_text(encoding='utf-8', errors='ignore')
|
||||
VERSION = json.loads((PACKAGE_DIR / "package.json").read_text().strip())['version']
|
||||
|
||||
# To see when setup.py gets called (uncomment for debugging):
|
||||
|
|
Loading…
Reference in a new issue