Skip to content

Commit

Permalink
Update dependencies (#1469)
Browse files Browse the repository at this point in the history
* Bump httpx from 0.23.2 to 0.23.3 (#1464)

Bumps [httpx](https://github.com/encode/httpx) from 0.23.2 to 0.23.3.
- [Release notes](https://github.com/encode/httpx/releases)
- [Changelog](https://github.com/encode/httpx/blob/master/CHANGELOG.md)
- [Commits](encode/httpx@0.23.2...0.23.3)

---
updated-dependencies:
- dependency-name: httpx
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump mkdocs-material from 9.0.0 to 9.0.3 (#1463)

Bumps [mkdocs-material](https://github.com/squidfunk/mkdocs-material) from 9.0.0 to 9.0.3.
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@9.0.0...9.0.3)

---
updated-dependencies:
- dependency-name: mkdocs-material
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump rich from 13.0.0 to 13.0.1 (#1465)

Bumps [rich](https://github.com/Textualize/rich) from 13.0.0 to 13.0.1.
- [Release notes](https://github.com/Textualize/rich/releases)
- [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md)
- [Commits](Textualize/rich@v13.0.0...v13.0.1)

---
updated-dependencies:
- dependency-name: rich
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matthew Evans <[email protected]>

* Bump fastapi from 0.88.0 to 0.89.0 (#1466)

* Bump fastapi from 0.88.0 to 0.89.0

Bumps [fastapi](https://github.com/tiangolo/fastapi) from 0.88.0 to 0.89.0.
- [Release notes](https://github.com/tiangolo/fastapi/releases)
- [Commits](fastapi/fastapi@0.88.0...0.89.0)

---
updated-dependencies:
- dependency-name: fastapi
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Remove CSV type hint for compatibility with FastAPI 0.89

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matthew Evans <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matthew Evans <[email protected]>
Co-authored-by: Matthew Evans <[email protected]>
  • Loading branch information
4 people authored Jan 9, 2023
1 parent 3627eb8 commit 1a0428d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion optimade/server/routers/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class CsvResponse(Response):
tags=["Versions"],
response_class=CsvResponse,
)
def get_versions(request: Request) -> CsvResponse:
def get_versions(request: Request):
"""Respond with the text/csv representation for the served versions."""
version = BASE_URL_PREFIXES["major"].replace("/v", "")
response = f"version\n{version}"
Expand Down
2 changes: 1 addition & 1 deletion requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mike==1.1.2
mkdocs==1.4.2
mkdocs-awesome-pages-plugin==2.8.0
mkdocs-material==9.0.0
mkdocs-material==9.0.3
mkdocstrings[python-legacy]==0.19.1
4 changes: 2 additions & 2 deletions requirements-http-client.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
click==8.1.3
httpx==0.23.2
rich==13.0.0
httpx==0.23.3
rich==13.0.1
2 changes: 1 addition & 1 deletion requirements-server.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
elasticsearch==7.17.7
elasticsearch-dsl==7.4.0
fastapi==0.88.0
fastapi==0.89.0
mongomock==4.1.2
pymongo==4.3.3

0 comments on commit 1a0428d

Please sign in to comment.