mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +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
 |