diff --git a/requirements-client.txt b/requirements-client.txt index dd62c90ed..b00abe44f 100644 --- a/requirements-client.txt +++ b/requirements-client.txt @@ -1,5 +1,5 @@ aiida-core==1.5.2 ase==3.20.1 numpy==1.19.4 -pymatgen==2020.12.18 +pymatgen==2020.12.31 jarvis-tools==2020.11.27 diff --git a/requirements-dev.txt b/requirements-dev.txt index ba1f32174..337736c87 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -4,4 +4,4 @@ codecov==2.1.11 jsondiff==1.2.0 pylint==2.6.0 pre-commit==2.9.3 -invoke==1.4.1 +invoke==1.5.0 diff --git a/requirements-docs.txt b/requirements-docs.txt index 32bb7c8e3..da3acacd0 100644 --- a/requirements-docs.txt +++ b/requirements-docs.txt @@ -1,5 +1,5 @@ mkdocs==1.1.2 mkdocs-awesome-pages-plugin==2.5.0 -mkdocs-material==6.2.2 +mkdocs-material==6.2.3 mkdocs-minify-plugin==0.3.0 mkdocstrings==0.13.6 diff --git a/requirements.txt b/requirements.txt index 326d3ed8e..4f0ebd22a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,9 +3,9 @@ lark-parser==0.11.1 pydantic==1.6.1 email_validator==1.1.2 requests==2.25.1 -uvicorn==0.13.2 +uvicorn==0.13.3 pymongo==3.11.2 -mongomock==3.21.0 +mongomock==3.22.0 django==3.1.4 elasticsearch-dsl==7.3.0 Jinja2==2.11.2 diff --git a/setup.py b/setup.py index d56ee5a3b..b9d656421 100644 --- a/setup.py +++ b/setup.py @@ -19,15 +19,15 @@ # Server minded django_deps = ["django>=2.2.9,<4.0"] elastic_deps = ["elasticsearch-dsl>=6.4,<8.0"] -mongo_deps = ["pymongo~=3.11", "mongomock~=3.21"] -server_deps = ["uvicorn~=0.13.2", "Jinja2~=2.11"] + mongo_deps +mongo_deps = ["pymongo~=3.11", "mongomock~=3.22"] +server_deps = ["uvicorn~=0.13.3", "Jinja2~=2.11"] + mongo_deps # Client minded aiida_deps = ["aiida-core~=1.5.2"] ase_deps = ["ase~=3.20"] cif_deps = ["numpy~=1.19"] pdb_deps = cif_deps -pymatgen_deps = ["pymatgen==2020.12.18"] +pymatgen_deps = ["pymatgen==2020.12.31"] jarvis_deps = ["jarvis-tools==2020.11.27"] client_deps = cif_deps @@ -46,7 +46,7 @@ "jsondiff~=1.2", ] + server_deps dev_deps = ( - ["pylint~=2.6", "pre-commit~=2.9", "invoke~=1.4"] + ["pylint~=2.6", "pre-commit~=2.9", "invoke~=1.5"] + docs_deps + testing_deps + client_deps