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"