diff --git a/spacy/about.py b/spacy/about.py index 34ac75ccd..38e934374 100644 --- a/spacy/about.py +++ b/spacy/about.py @@ -14,4 +14,4 @@ __docs_models__ = 'https://spacy.io/docs/usage/models' __download_url__ = 'https://github.com/explosion/spacy-models/releases/download' __compatibility__ = 'https://raw.githubusercontent.com/explosion/spacy-models/master/compatibility.json' __shortcuts__ = 'https://raw.githubusercontent.com/explosion/spacy-models/master/shortcuts.json' -__model_files__ = 'https://raw.githubusercontent.com/explosion/spacy-dev-resources/master/templates/model/' +__model_files__ = 'https://raw.githubusercontent.com/explosion/spacy-dev-resources/v2/templates/model/' diff --git a/spacy/cli/package.py b/spacy/cli/package.py index e78a4eeb4..2186f1f68 100644 --- a/spacy/cli/package.py +++ b/spacy/cli/package.py @@ -36,7 +36,7 @@ def package(cmd, input_dir, output_dir, meta=None, force=False): template_setup = get_template('setup.py') template_manifest = get_template('MANIFEST.in') - template_init = get_template('en_model_name/__init__.py') + template_init = get_template('xx_model_name/__init__.py') meta_path = meta_path or input_path / 'meta.json' if meta_path.is_file(): prints(meta_path, title="Reading meta.json from file")