mirror of
https://github.com/furyhawk/listen.git
synced 2026-07-21 08:55:34 +00:00
Bumps the all-dependencies group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [fastapi](https://github.com/tiangolo/fastapi) | `0.111.0` | `0.111.1` | | [pydantic](https://github.com/pydantic/pydantic) | `2.7.4` | `2.8.2` | | [coverage](https://github.com/nedbat/coveragepy) | `7.5.4` | `7.6.0` | | [ruff](https://github.com/astral-sh/ruff) | `0.5.0` | `0.5.2` | | [certifi](https://github.com/certifi/python-certifi) | `2024.6.2` | `2024.7.4` | | [identify](https://github.com/pre-commit/identify) | `2.5.36` | `2.6.0` | | [setuptools](https://github.com/pypa/setuptools) | `70.1.1` | `70.3.0` | Updates `fastapi` from 0.111.0 to 0.111.1 - [Release notes](https://github.com/tiangolo/fastapi/releases) - [Commits](https://github.com/tiangolo/fastapi/compare/0.111.0...0.111.1) Updates `pydantic` from 2.7.4 to 2.8.2 - [Release notes](https://github.com/pydantic/pydantic/releases) - [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md) - [Commits](https://github.com/pydantic/pydantic/compare/v2.7.4...v2.8.2) Updates `coverage` from 7.5.4 to 7.6.0 - [Release notes](https://github.com/nedbat/coveragepy/releases) - [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst) - [Commits](https://github.com/nedbat/coveragepy/compare/7.5.4...7.6.0) Updates `ruff` from 0.5.0 to 0.5.2 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.5.0...0.5.2) Updates `certifi` from 2024.6.2 to 2024.7.4 - [Commits](https://github.com/certifi/python-certifi/compare/2024.06.02...2024.07.04) Updates `identify` from 2.5.36 to 2.6.0 - [Commits](https://github.com/pre-commit/identify/compare/v2.5.36...v2.6.0) Updates `pydantic-core` from 2.18.4 to 2.20.1 - [Release notes](https://github.com/pydantic/pydantic-core/releases) - [Commits](https://github.com/pydantic/pydantic-core/compare/v2.18.4...v2.20.1) Updates `setuptools` from 70.1.1 to 70.3.0 - [Release notes](https://github.com/pypa/setuptools/releases) - [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst) - [Commits](https://github.com/pypa/setuptools/compare/v70.1.1...v70.3.0) --- updated-dependencies: - dependency-name: fastapi dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: pydantic dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: coverage dependency-type: direct:development update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: certifi dependency-type: indirect update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: identify dependency-type: indirect update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: pydantic-core dependency-type: indirect update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: setuptools dependency-type: indirect update-type: version-update:semver-minor dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
61 lines
1.4 KiB
TOML
61 lines
1.4 KiB
TOML
[tool.poetry]
|
|
authors = ["admin <admin@example.com>"]
|
|
description = "FastAPI project generated using minimal-fastapi-postgres-template."
|
|
name = "app"
|
|
version = "0.1.0-alpha"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
|
|
alembic = "^1.13.2"
|
|
asyncpg = "^0.29.0"
|
|
bcrypt = "^4.1.3"
|
|
fastapi = "^0.111.1"
|
|
pydantic = {extras = ["dotenv", "email"], version = "^2.8.2"}
|
|
pydantic-settings = "^2.3.4"
|
|
pyjwt = "^2.8.0"
|
|
python-multipart = "^0.0.9"
|
|
sqlalchemy = "^2.0.31"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
coverage = "^7.6.0"
|
|
freezegun = "^1.5.1"
|
|
gevent = "^24.2.1"
|
|
httpx = "^0.27.0"
|
|
mypy = "^1.10.1"
|
|
pre-commit = "^3.7.1"
|
|
pytest = "^8.2.2"
|
|
# do not bump pytest-asyncio until https://github.com/pytest-dev/pytest-asyncio/issues/706 resolved
|
|
pytest-asyncio = "0.21.2"
|
|
pytest-cov = "^5.0.0"
|
|
pytest-xdist = "^3.6.1"
|
|
ruff = "^0.5.2"
|
|
types-passlib = "^1.7.7.20240327"
|
|
uvicorn = {extras = ["standard"], version = "^0.30.1"}
|
|
|
|
[build-system]
|
|
build-backend = "poetry.core.masonry.api"
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "-vv -n auto --cov --cov-report xml --cov-report term-missing --cov-fail-under=95"
|
|
asyncio_mode = "auto"
|
|
testpaths = ["app/tests"]
|
|
|
|
[tool.coverage.run]
|
|
concurrency = ["gevent"]
|
|
omit = ["app/tests/*"]
|
|
source = ["app"]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.12"
|
|
strict = true
|
|
|
|
[tool.ruff]
|
|
target-version = "py312"
|
|
|
|
[tool.ruff.lint]
|
|
# pycodestyle, pyflakes, isort, pylint, pyupgrade
|
|
ignore = ["E501"]
|
|
select = ["E", "F", "I", "PL", "UP", "W"]
|