mirror of
https://github.com/furyhawk/listen.git
synced 2026-07-21 17:05:34 +00:00
Bumps the all-dependencies group with 7 updates: | Package | From | To | | --- | --- | --- | | [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) | `2.0.30` | `2.0.31` | | [coverage](https://github.com/nedbat/coveragepy) | `7.5.3` | `7.5.4` | | [ruff](https://github.com/astral-sh/ruff) | `0.4.9` | `0.4.10` | | [email-validator](https://github.com/JoshData/python-email-validator) | `2.1.2` | `2.2.0` | | [filelock](https://github.com/tox-dev/py-filelock) | `3.15.1` | `3.15.4` | | [setuptools](https://github.com/pypa/setuptools) | `70.0.0` | `70.1.0` | | [virtualenv](https://github.com/pypa/virtualenv) | `20.26.2` | `20.26.3` | Updates `sqlalchemy` from 2.0.30 to 2.0.31 - [Release notes](https://github.com/sqlalchemy/sqlalchemy/releases) - [Changelog](https://github.com/sqlalchemy/sqlalchemy/blob/main/CHANGES.rst) - [Commits](https://github.com/sqlalchemy/sqlalchemy/commits) Updates `coverage` from 7.5.3 to 7.5.4 - [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.3...7.5.4) Updates `ruff` from 0.4.9 to 0.4.10 - [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/v0.4.9...v0.4.10) Updates `email-validator` from 2.1.2 to 2.2.0 - [Release notes](https://github.com/JoshData/python-email-validator/releases) - [Changelog](https://github.com/JoshData/python-email-validator/blob/main/CHANGELOG.md) - [Commits](https://github.com/JoshData/python-email-validator/compare/v2.1.2...v2.2.0) Updates `filelock` from 3.15.1 to 3.15.4 - [Release notes](https://github.com/tox-dev/py-filelock/releases) - [Changelog](https://github.com/tox-dev/filelock/blob/main/docs/changelog.rst) - [Commits](https://github.com/tox-dev/py-filelock/compare/3.15.1...3.15.4) Updates `setuptools` from 70.0.0 to 70.1.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.0.0...v70.1.0) Updates `virtualenv` from 20.26.2 to 20.26.3 - [Release notes](https://github.com/pypa/virtualenv/releases) - [Changelog](https://github.com/pypa/virtualenv/blob/main/docs/changelog.rst) - [Commits](https://github.com/pypa/virtualenv/compare/20.26.2...20.26.3) --- updated-dependencies: - dependency-name: sqlalchemy dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: coverage dependency-type: direct:development update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: email-validator dependency-type: indirect update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: filelock dependency-type: indirect update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: setuptools dependency-type: indirect update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: virtualenv dependency-type: indirect update-type: version-update:semver-patch 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.1"
|
|
asyncpg = "^0.29.0"
|
|
bcrypt = "^4.1.3"
|
|
fastapi = "^0.111.0"
|
|
pydantic = {extras = ["dotenv", "email"], version = "^2.7.4"}
|
|
pydantic-settings = "^2.3.3"
|
|
pyjwt = "^2.8.0"
|
|
python-multipart = "^0.0.9"
|
|
sqlalchemy = "^2.0.31"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
coverage = "^7.5.4"
|
|
freezegun = "^1.5.1"
|
|
gevent = "^24.2.1"
|
|
httpx = "^0.27.0"
|
|
mypy = "^1.10.0"
|
|
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.4.10"
|
|
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"]
|