mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
13 lines
218 B
Bash
Executable File
13 lines
218 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
version=$(grep "__version__ = " spacy/about.py)
|
|
version=${version/__version__ = }
|
|
version=${version/\'/}
|
|
version=${version/\'/}
|
|
version=${version/\"/}
|
|
version=${version/\"/}
|
|
|
|
echo $version
|