diff --git a/spacy/cli/package.py b/spacy/cli/package.py index b4dc76e9a..5cab2b4bc 100644 --- a/spacy/cli/package.py +++ b/spacy/cli/package.py @@ -58,7 +58,7 @@ def create_dirs(package_path, force): def create_file(file_path, contents): file_path.touch() - file_path.write_text(contents, encoding='utf-8') + file_path.open('w').write(contents, encoding='utf-8') def generate_meta():