Set version to v2.3.7 (#8289)

* Set version to v2.3.7

* Add download test to CI
This commit is contained in:
Adriane Boyd 2021-06-04 19:33:42 +02:00 committed by GitHub
parent 22287c89c0
commit cae72e46dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -130,4 +130,6 @@ jobs:
- script: | - script: |
pip install -r requirements.txt --prefer-binary pip install -r requirements.txt --prefer-binary
python -m pytest --pyargs spacy python -m pytest --pyargs spacy
python -m spacy download en_core_web_sm
python -c "import spacy; nlp=spacy.load('en_core_web_sm'); doc=nlp('test')"
displayName: 'Run tests' displayName: 'Run tests'

View File

@ -1,6 +1,6 @@
# fmt: off # fmt: off
__title__ = "spacy" __title__ = "spacy"
__version__ = "2.3.6" __version__ = "2.3.7"
__release__ = True __release__ = True
__download_url__ = "https://github.com/explosion/spacy-models/releases/download" __download_url__ = "https://github.com/explosion/spacy-models/releases/download"
__compatibility__ = "https://raw.githubusercontent.com/explosion/spacy-models/master/compatibility.json" __compatibility__ = "https://raw.githubusercontent.com/explosion/spacy-models/master/compatibility.json"