mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	Remove jsonschema from dependencies
This commit is contained in:
		
							parent
							
								
									7a73a9dcf6
								
							
						
					
					
						commit
						12b7be1d98
					
				
							
								
								
									
										4
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								Makefile
									
									
									
									
									
								
							| 
						 | 
					@ -5,7 +5,7 @@ VENV := ./env$(PYVER)
 | 
				
			||||||
version := $(shell "bin/get-version.sh")
 | 
					version := $(shell "bin/get-version.sh")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
dist/spacy-$(version).pex : wheelhouse/spacy-$(version).stamp
 | 
					dist/spacy-$(version).pex : wheelhouse/spacy-$(version).stamp
 | 
				
			||||||
	$(VENV)/bin/pex -f ./wheelhouse --no-index --disable-cache -m spacy -o $@ spacy==$(version) jsonschema spacy_lookups_data
 | 
						$(VENV)/bin/pex -f ./wheelhouse --no-index --disable-cache -m spacy -o $@ spacy==$(version) spacy_lookups_data
 | 
				
			||||||
	chmod a+rx $@
 | 
						chmod a+rx $@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
dist/pytest.pex : wheelhouse/pytest-*.whl
 | 
					dist/pytest.pex : wheelhouse/pytest-*.whl
 | 
				
			||||||
| 
						 | 
					@ -14,7 +14,7 @@ dist/pytest.pex : wheelhouse/pytest-*.whl
 | 
				
			||||||
 | 
					
 | 
				
			||||||
wheelhouse/spacy-$(version).stamp : $(VENV)/bin/pex setup.py spacy/*.py* spacy/*/*.py*
 | 
					wheelhouse/spacy-$(version).stamp : $(VENV)/bin/pex setup.py spacy/*.py* spacy/*/*.py*
 | 
				
			||||||
	$(VENV)/bin/pip wheel . -w ./wheelhouse
 | 
						$(VENV)/bin/pip wheel . -w ./wheelhouse
 | 
				
			||||||
	$(VENV)/bin/pip wheel jsonschema spacy_lookups_data -w ./wheelhouse
 | 
						$(VENV)/bin/pip wheel spacy_lookups_data -w ./wheelhouse
 | 
				
			||||||
	touch $@
 | 
						touch $@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
wheelhouse/pytest-%.whl : $(VENV)/bin/pex
 | 
					wheelhouse/pytest-%.whl : $(VENV)/bin/pex
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -14,8 +14,6 @@ requests>=2.13.0,<3.0.0
 | 
				
			||||||
plac>=0.9.6,<1.2.0
 | 
					plac>=0.9.6,<1.2.0
 | 
				
			||||||
tqdm>=4.38.0,<5.0.0
 | 
					tqdm>=4.38.0,<5.0.0
 | 
				
			||||||
importlib_metadata>=0.20; python_version < "3.8"
 | 
					importlib_metadata>=0.20; python_version < "3.8"
 | 
				
			||||||
# Optional dependencies
 | 
					 | 
				
			||||||
jsonschema>=2.6.0,<3.1.0
 | 
					 | 
				
			||||||
pydantic>=1.3.0,<2.0.0
 | 
					pydantic>=1.3.0,<2.0.0
 | 
				
			||||||
# Development dependencies
 | 
					# Development dependencies
 | 
				
			||||||
cython>=0.25
 | 
					cython>=0.25
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -9,7 +9,6 @@ def test_build_dependencies():
 | 
				
			||||||
        "pytest-timeout",
 | 
					        "pytest-timeout",
 | 
				
			||||||
        "mock",
 | 
					        "mock",
 | 
				
			||||||
        "flake8",
 | 
					        "flake8",
 | 
				
			||||||
        "jsonschema",
 | 
					 | 
				
			||||||
    ]
 | 
					    ]
 | 
				
			||||||
    libs_ignore_setup = ["fugashi", "natto-py", "pythainlp"]
 | 
					    libs_ignore_setup = ["fugashi", "natto-py", "pythainlp"]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user