Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to v0.3.4 #158

Merged
merged 2 commits into from
Feb 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
lark-parser==0.8.1
fastapi==0.47.1
pydantic==1.3
fastapi==0.48.0
pydantic==1.4
email_validator==1.0.5
requests==2.22.0
uvicorn==0.11.2
pymongo==3.10.1
mongomock==3.18.0
django==2.2.9
elasticsearch_dsl==6.4.0
mongomock==3.19.0
django==2.2.10
elasticsearch-dsl==6.4.0
2 changes: 1 addition & 1 deletion openapi/index_openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi": "3.0.2",
"info": {
"title": "OPTiMaDe API - Index meta-database",
"description": "The [Open Databases Integration for Materials Design (OPTiMaDe) consortium](https://www.optimade.org/) aims to make materials databases interoperational by developing a common REST API.\nThis is the \"special\" index meta-database.\n\nThis specification is generated using [`optimade-python-tools`](https://github.com/Materials-Consortia/optimade-python-tools/tree/v0.3.3) v0.3.3.",
"description": "The [Open Databases Integration for Materials Design (OPTiMaDe) consortium](https://www.optimade.org/) aims to make materials databases interoperational by developing a common REST API.\nThis is the \"special\" index meta-database.\n\nThis specification is generated using [`optimade-python-tools`](https://github.com/Materials-Consortia/optimade-python-tools/tree/v0.3.4) v0.3.4.",
"version": "0.10.1"
},
"paths": {
Expand Down
2 changes: 1 addition & 1 deletion openapi/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi": "3.0.2",
"info": {
"title": "OPTiMaDe API",
"description": "The [Open Databases Integration for Materials Design (OPTiMaDe) consortium](https://www.optimade.org/) aims to make materials databases interoperational by developing a common REST API.\n\nThis specification is generated using [`optimade-python-tools`](https://github.com/Materials-Consortia/optimade-python-tools/tree/v0.3.3) v0.3.3.",
"description": "The [Open Databases Integration for Materials Design (OPTiMaDe) consortium](https://www.optimade.org/) aims to make materials databases interoperational by developing a common REST API.\n\nThis specification is generated using [`optimade-python-tools`](https://github.com/Materials-Consortia/optimade-python-tools/tree/v0.3.4) v0.3.4.",
"version": "0.10.1"
},
"paths": {
Expand Down
2 changes: 1 addition & 1 deletion optimade/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.3.3"
__version__ = "0.3.4"
__api_version__ = "0.10.1"
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
module_dir = Path(__file__).resolve().parent

# Dependencies
mongo_deps = ["pymongo~=3.10", "mongomock~=3.18"]
mongo_deps = ["pymongo~=3.10", "mongomock~=3.19"]
server_deps = ["uvicorn"] + mongo_deps
django_deps = ["django~=2.2,>=2.2.9"]
elastic_deps = ["elasticsearch_dsl~=6.4"]
elastic_deps = ["elasticsearch-dsl~=6.4"]
testing_deps = [
"pytest~=3.10",
"pytest-cov",
Expand All @@ -20,7 +20,7 @@

setup(
name="optimade",
version="0.3.3",
version="0.3.4",
url="https://github.com/Materials-Consortia/optimade-python-tools",
license="MIT",
author="OPTiMaDe Development Team",
Expand All @@ -45,8 +45,8 @@
python_requires=">=3.6",
install_requires=[
"lark-parser~=0.8.1",
"fastapi~=0.47",
"pydantic~=1.3",
"fastapi~=0.48",
"pydantic~=1.4",
"email_validator",
"requests",
],
Expand Down