Update parent package and version [ci skip]

This commit is contained in:
Ines Montani 2021-01-30 20:12:42 +11:00
parent 3435b894df
commit 14f631f52c
2 changed files with 6 additions and 4 deletions

View File

@ -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,

View File

@ -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"