This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [python](https://python.org) ([source](https://github.com/python/cpython)) | requires-python | minor | `<3.14,>=3.13` → `<3.15,>=3.14` | --- ### Release Notes <details> <summary>python/cpython (python)</summary> ### [`v3.14.3`](https://github.com/python/cpython/compare/v3.14.2...v3.14.3) [Compare Source](https://github.com/python/cpython/compare/v3.14.2...v3.14.3) ### [`v3.14.2`](https://github.com/python/cpython/compare/v3.14.1...v3.14.2) [Compare Source](https://github.com/python/cpython/compare/v3.14.1...v3.14.2) ### [`v3.14.1`](https://github.com/python/cpython/compare/v3.14.0...v3.14.1) [Compare Source](https://github.com/python/cpython/compare/v3.14.0...v3.14.1) ### [`v3.14.0`](https://github.com/python/cpython/compare/v3.13.12...v3.14.0) [Compare Source](https://github.com/python/cpython/compare/v3.13.12...v3.14.0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4zMS4wIiwidXBkYXRlZEluVmVyIjoiNDMuMzEuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsidHlwZS9kZXBlbmRlbmNpZXMiXX0=--> Reviewed-on: #199 Co-authored-by: renovate[bot] <renovate-bot@git.tainton.uk> Co-committed-by: renovate[bot] <renovate-bot@git.tainton.uk>
48 lines
920 B
TOML
48 lines
920 B
TOML
[project]
|
|
name = "epage"
|
|
version = "1.0.0"
|
|
description = "Send messages via Pushover."
|
|
readme = "README.md"
|
|
requires-python = "<3.15,>=3.14"
|
|
dependencies = [
|
|
"flask>=3.1.0",
|
|
"flask-wtf>=1.2.2",
|
|
"requests>=2.32.3",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"black<26.1.1,>=26.1.0",
|
|
"coverage<8.0.0,>=7.6.10",
|
|
"isort<8.0.1,>=8.0.0",
|
|
"pylint<4.1.0,>=4.0.0",
|
|
"pylint-exit<2.0.0,>=1.2.0",
|
|
"pytest<9.1.0,>=9.0.0",
|
|
"ruff>=0.11.2",
|
|
]
|
|
|
|
[tool.pdm.build]
|
|
includes = []
|
|
|
|
[build-system]
|
|
requires = ["pdm-backend"]
|
|
build-backend = "pdm.backend"
|
|
|
|
[tool.ruff]
|
|
fix = true
|
|
indent-width = 4
|
|
line-length = 101
|
|
output-format = "pylint"
|
|
required-version = ">=0.9.6"
|
|
respect-gitignore = true
|
|
show-fixes = true
|
|
src = ["app", "tests"]
|
|
unsafe-fixes = false
|
|
|
|
[tool.ruff.format]
|
|
docstring-code-format = true
|
|
docstring-code-line-length = 90
|
|
indent-style = "space"
|
|
quote-style = "double"
|
|
skip-magic-trailing-comma = true
|