From 14f631f52c125477ae2bb0ea51e0886889a3d939 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Sat, 30 Jan 2021 20:12:42 +1100 Subject: [PATCH] Update parent package and version [ci skip] --- setup.py | 6 ++++-- spacy/about.py | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index fb659bcb0..df21202fa 100755 --- a/setup.py +++ b/setup.py @@ -203,13 +203,15 @@ def setup_package(): ext_modules = [] for name in MOD_NAMES: mod_path = name.replace(".", "/") + ".pyx" - ext = Extension(name, [mod_path], language="c++", extra_compile_args=["-std=c++11"]) + ext = Extension( + name, [mod_path], language="c++", extra_compile_args=["-std=c++11"] + ) ext_modules.append(ext) print("Cythonizing sources") ext_modules = cythonize(ext_modules, compiler_directives=COMPILER_DIRECTIVES) setup( - name="spacy-nightly", + name="spacy", packages=PACKAGES, version=about["__version__"], ext_modules=ext_modules, diff --git a/spacy/about.py b/spacy/about.py index 767f8c689..6cb85da5b 100644 --- a/spacy/about.py +++ b/spacy/about.py @@ -1,6 +1,6 @@ # fmt: off -__title__ = "spacy-nightly" -__version__ = "3.0.0rc5" +__title__ = "spacy" +__version__ = "3.0.0" __download_url__ = "https://github.com/explosion/spacy-models/releases/download" __compatibility__ = "https://raw.githubusercontent.com/explosion/spacy-models/master/compatibility.json" __projects__ = "https://github.com/explosion/projects"