"vscode:/vscode.git/clone" did not exist on "0d332a641ff6b28e71b2a9ab5e641f8cf4a2ec99"
Commit e795a4c6 authored by Patrick von Platen's avatar Patrick von Platen
Browse files

Fix import metadatalib

parent 4293b9f5
...@@ -169,7 +169,7 @@ extras["test"] = [ ...@@ -169,7 +169,7 @@ extras["test"] = [
extras["dev"] = extras["quality"] + extras["test"] + extras["training"] extras["dev"] = extras["quality"] + extras["test"] + extras["training"]
install_requires = [ install_requires = [
deps["importlib_metadata"] + ";python_version<'3.8'", # importlib_metadata for Python versions that don't have it deps["importlib_metadata"],
deps["filelock"], deps["filelock"],
deps["huggingface-hub"], deps["huggingface-hub"],
deps["numpy"], deps["numpy"],
......
...@@ -7,6 +7,7 @@ deps = { ...@@ -7,6 +7,7 @@ deps = {
"filelock": "filelock", "filelock": "filelock",
"flake8": "flake8>=3.8.3", "flake8": "flake8>=3.8.3",
"huggingface-hub": "huggingface-hub", "huggingface-hub": "huggingface-hub",
"importlib_metadata": "importlib_metadata",
"isort": "isort>=5.5.4", "isort": "isort>=5.5.4",
"numpy": "numpy", "numpy": "numpy",
"pytest": "pytest", "pytest": "pytest",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment