mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-25 17:36:30 +03:00
formatting
This commit is contained in:
parent
34986c7bfd
commit
6bbd816569
|
@ -34,7 +34,7 @@ def test_build_dependencies(en_vocab):
|
|||
assert req_v is not None # if fail: setup.cfg contains a lib not in requirements.txt
|
||||
assert (lib+v) == (lib+req_v) # if fail: setup.cfg & requirements.txt have conflicting versions
|
||||
setup_keys.add(lib)
|
||||
assert sorted(setup_keys) == sorted(req_dict.keys()) # if fail: requirements.txt contains a lib not in setup.cfg
|
||||
assert sorted(setup_keys) == sorted(req_dict.keys()) # if fail: requirements.txt contains a lib not in setup.cfg
|
||||
|
||||
# check pyproject.toml and compare the versions of the libs to requirements.txt
|
||||
# does not fail when there are missing or additional libs
|
||||
|
@ -53,9 +53,10 @@ def test_build_dependencies(en_vocab):
|
|||
assert (lib+v) == (lib+req_v) # if fail: pyproject.toml & requirements.txt have conflicting versions
|
||||
toml_keys.add(lib)
|
||||
|
||||
|
||||
def _parse_req(line):
|
||||
lib = re.match(r"^[a-z0-9\-]*", line).group(0)
|
||||
v = line.replace(lib, "").strip()
|
||||
if not re.match(r"^[<>=][<>=].*", v):
|
||||
return None, None
|
||||
return lib, v
|
||||
return lib, v
|
||||
|
|
Loading…
Reference in New Issue
Block a user