Skip to content

Commit b24d2d3

Browse files
authored
Merge pull request #27 from fastapi-mvc/bump_dependencies
Bump dependencies
2 parents ae328f6 + 70ec73c commit b24d2d3

File tree

4 files changed

+15
-14
lines changed

4 files changed

+15
-14
lines changed

template/README.md.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![K8s integration]({{repo_url}}/actions/workflows/integration.yml/badge.svg)]({{repo_url}}/actions/workflows/integration.yml)
88
{%- endif %}
99
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
10-
![GitHub](https://img.shields.io/badge/fastapi-v.0.92.0-blue)
10+
![GitHub](https://img.shields.io/badge/fastapi-v.0.98.0-blue)
1111
![GitHub](https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue)
1212
![GitHub](https://img.shields.io/badge/license-{{license}}-blue)
1313

template/pyproject.toml.jinja

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,35 +18,35 @@ classifiers = [
1818

1919
[tool.poetry.dependencies]
2020
python = "^3.8"
21-
fastapi = "~0.92.0"
22-
uvicorn = {extras = ["standard"], version = "~0.20.0"}
21+
fastapi = "~0.98.0"
22+
uvicorn = {extras = ["standard"], version = "~0.22.0"}
2323
gunicorn = "~20.1.0"
2424
click = "~8.1.3"
2525
{%- if redis %}
26-
redis = "~4.5.1"
26+
redis = "~4.5.5"
2727
{%- endif %}
2828
{%- if aiohttp %}
2929
aiohttp = "~3.8.4"
3030
{%- endif %}
3131

3232
[tool.poetry.group.dev.dependencies]
33-
pytest = "~7.2.1"
33+
pytest = "~7.4.0"
3434
pytest-cov = "~4.0.0"
35-
pytest-asyncio = "~0.20.3"
35+
pytest-asyncio = "~0.21.0"
3636
requests = "~2.28.2"
3737
httpx = "~0.23.3"
3838
{%- if aiohttp %}
3939
aioresponses = "~0.7.3"
4040
{%- endif %}
41-
mypy = "~1.0.1"
41+
mypy = "~1.4.1"
4242
flake8 = "~5.0.4"
4343
flake8-docstrings = "~1.7.0"
4444
flake8-import-order = "~0.18.1"
4545
flake8-todo = "^0.7"
46-
black = "~23.1.0"
46+
black = "~23.3.0"
4747
Sphinx = "~5.3.0"
4848
Pallets-Sphinx-Themes = "~2.0.2"
49-
myst-parser = "~0.19.0"
49+
myst-parser = "~1.0.0"
5050
fastapi-mvc = "^0.26.0"
5151

5252
[tool.poetry.scripts]
@@ -74,6 +74,7 @@ exclude_lines = [
7474
exclude = [
7575
"config/gunicorn.py"
7676
]
77+
plugins = "pydantic.mypy"
7778
python_version = '3.10'
7879
show_error_codes = true
7980
follow_imports = 'silent'

template/{% if nix %}flake.lock{% endif %}.jinja

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@
3535
},
3636
"nixpkgs": {
3737
"locked": {
38-
"lastModified": 1675681488,
39-
"narHash": "sha256-0E/oYpixC+joFk7UrY60TwZcdthzP2BXmJwne3Ni8ZI=",
38+
"lastModified": 1687829761,
39+
"narHash": "sha256-QRe1Y8SS3M4GeC58F/6ajz6V0ZLUVWX3ZAMgov2N3/g=",
4040
"owner": "NixOS",
4141
"repo": "nixpkgs",
42-
"rev": "13fdd3945d8a2da5e4afe35d8a629193a9680911",
42+
"rev": "9790f3242da2152d5aa1976e3e4b8b414f4dd206",
4343
"type": "github"
4444
},
4545
"original": {
4646
"owner": "NixOS",
47-
"ref": "nixos-22.11",
47+
"ref": "nixos-23.05",
4848
"repo": "nixpkgs",
4949
"type": "github"
5050
}

template/{% if nix %}flake.nix{% endif %}.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
};
1212

1313
inputs = {
14-
nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11";
14+
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
1515
flake-parts.url = "github:hercules-ci/flake-parts";
1616
poetry2nix = {
1717
url = "github:nix-community/poetry2nix?ref=1.42.0";

0 commit comments

Comments
 (0)