Skip to content

Commit

Permalink
Update dependencies (#321)
Browse files Browse the repository at this point in the history
Update dependencies:

* Update pytest requirement from ~=6.2 to ~=7.0 (#318)
* Update uvicorn requirement from ~=0.17.1 to ~=0.17.4 (#319)
* Update optimade[mongo] requirement from ~=0.16.9 to ~=0.16.10 (#320)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: The AiiDA Team <[email protected]>
  • Loading branch information
3 people authored Feb 9, 2022
1 parent 9ce08cf commit a066be4
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM python:3.8
WORKDIR /app

# Install specific optimade and aiida-core versions
ARG OPTIMADE_TOOLS_VERSION=0.16.9
ARG OPTIMADE_TOOLS_VERSION=0.16.10
ARG AIIDA_VERSION=1.6.5

# Copy repo contents
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

| Latest release | Build status | Activity |
|:--------------:|:------------:|:--------:|
| [![AiiDA](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/aiidateam/aiida-optimade/develop/.ci/aiida-version.json)](https://github.com/aiidateam/aiida-core/)<br>[![PyPI](https://img.shields.io/pypi/v/aiida-optimade)](https://pypi.org/project/aiida-optimade/)<br>[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/aiida-optimade)](https://pypi.org/project/aiida-optimade/)<br>[![OPTIMADE](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/Materials-Consortia/optimade-python-tools/v0.16.9/optimade-version.json)](https://github.com/Materials-Consortia/OPTIMADE/) | [![GitHub Workflow Status](https://img.shields.io/github/workflow/status/aiidateam/aiida-optimade/aiida-optimade)](https://github.com/aiidateam/aiida-optimade/actions/)<br>[![Codecov](https://img.shields.io/codecov/c/gh/aiidateam/aiida-optimade)](https://codecov.io/gh/aiidateam/aiida-optimade) | [![GitHub last commit](https://img.shields.io/github/last-commit/aiidateam/aiida-optimade)](https://github.com/aiidateam/aiida-optimade) |
| [![AiiDA](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/aiidateam/aiida-optimade/develop/.ci/aiida-version.json)](https://github.com/aiidateam/aiida-core/)<br>[![PyPI](https://img.shields.io/pypi/v/aiida-optimade)](https://pypi.org/project/aiida-optimade/)<br>[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/aiida-optimade)](https://pypi.org/project/aiida-optimade/)<br>[![OPTIMADE](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/Materials-Consortia/optimade-python-tools/v0.16.10/optimade-version.json)](https://github.com/Materials-Consortia/OPTIMADE/) | [![GitHub Workflow Status](https://img.shields.io/github/workflow/status/aiidateam/aiida-optimade/aiida-optimade)](https://github.com/aiidateam/aiida-optimade/actions/)<br>[![Codecov](https://img.shields.io/codecov/c/gh/aiidateam/aiida-optimade)](https://codecov.io/gh/aiidateam/aiida-optimade) | [![GitHub last commit](https://img.shields.io/github/last-commit/aiidateam/aiida-optimade)](https://github.com/aiidateam/aiida-optimade) |

This is a RESTful API server created with [FastAPI](https://fastapi.tiangolo.com/) that exposes an AiiDA database according to the [OPTIMADE specification](https://github.com/Materials-Consortia/OPTIMADE/blob/develop/optimade.rst).

Expand Down
2 changes: 1 addition & 1 deletion profiles/docker-compose-mongo.j2
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
context: ..
dockerfile: Dockerfile
args:
OPTIMADE_TOOLS_VERSION: 0.16.9
OPTIMADE_TOOLS_VERSION: 0.16.10
AIIDA_VERSION: 1.6.5
CONFIG_FILE: aiida_optimade/config.json
environment:
Expand Down
2 changes: 1 addition & 1 deletion profiles/docker-compose-mongo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
context: ..
dockerfile: Dockerfile
args:
OPTIMADE_TOOLS_VERSION: 0.16.9
OPTIMADE_TOOLS_VERSION: 0.16.10
AIIDA_VERSION: 1.6.5
CONFIG_FILE: aiida_optimade/config.json
environment:
Expand Down
2 changes: 1 addition & 1 deletion profiles/docker-compose.j2
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
context: ..
dockerfile: Dockerfile
args:
OPTIMADE_TOOLS_VERSION: 0.16.9
OPTIMADE_TOOLS_VERSION: 0.16.10
AIIDA_VERSION: 1.6.5
CONFIG_FILE: aiida_optimade/config.json
environment:
Expand Down
2 changes: 1 addition & 1 deletion profiles/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
context: ..
dockerfile: Dockerfile
args:
OPTIMADE_TOOLS_VERSION: 0.16.9
OPTIMADE_TOOLS_VERSION: 0.16.10
AIIDA_VERSION: 1.6.5
CONFIG_FILE: aiida_optimade/config.json
environment:
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
aiida-core~=1.6.5
optimade[mongo]~=0.16.9
optimade[mongo]~=0.16.10
pymatgen~=2021.3
uvicorn~=0.17.1
uvicorn~=0.17.4

# Dependencies used directly in this package, but included through other dependencies:
# aiida-core:
Expand Down
2 changes: 1 addition & 1 deletion requirements_testing.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
codecov~=2.1
pgtest~=1.3
pytest~=6.2
pytest~=7.0
pytest-cov~=3.0

0 comments on commit a066be4

Please sign in to comment.