This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [isort](https://github.com/PyCQA/isort) ([changelog](https://github.com/PyCQA/isort/releases)) | `<6.1.0,>=6.0.0` -> `<6.1.1,>=6.1.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>PyCQA/isort (isort)</summary> ### [`v6.1.0`](https://github.com/PyCQA/isort/releases/tag/6.1.0) [Compare Source](https://github.com/PyCQA/isort/compare/6.0.1...6.1.0) #### Changes - Update docs discussions channel ([#​2410](https://github.com/PyCQA/isort/issues/2410)) [@​staticdev](https://github.com/staticdev) - Add python 3.14 classifier and badge ([#​2409](https://github.com/PyCQA/isort/issues/2409)) [@​staticdev](https://github.com/staticdev) - Drop use of non-standard pkg\_resources API ([#​2405](https://github.com/PyCQA/isort/issues/2405)) [@​dvarrazzo](https://github.com/dvarrazzo) - Use working isort version in pre-commit example ([#​2402](https://github.com/PyCQA/isort/issues/2402)) [@​iainelder](https://github.com/iainelder) - fix typo in \_get\_files\_from\_dir\_cached test ([#​2392](https://github.com/PyCQA/isort/issues/2392)) [@​tiltingpenguin](https://github.com/tiltingpenguin) - Resolve bandit warnings ([#​2379](https://github.com/PyCQA/isort/issues/2379)) [@​kurtmckee](https://github.com/kurtmckee) - Add tox for cross-platform, parallel test suite execution ([#​2378](https://github.com/PyCQA/isort/issues/2378)) [@​kurtmckee](https://github.com/kurtmckee) - Add Project URLs to PyPI Side Panel ([#​2387](https://github.com/PyCQA/isort/issues/2387)) [@​guillermodotn](https://github.com/guillermodotn) - Fix typos ([#​2376](https://github.com/PyCQA/isort/issues/2376)) [@​co63oc](https://github.com/co63oc) #### :construction\_worker: Continuous Integration - Add make bash scripts portable ([#​2377](https://github.com/PyCQA/isort/issues/2377)) [@​staticdev](https://github.com/staticdev) #### 📦 Dependencies - Bump actions/checkout from 4 to 5 in the github-actions group ([#​2406](https://github.com/PyCQA/isort/issues/2406)) @​[dependabot\[bot\]](https://github.com/apps/dependabot) - Bump astral-sh/setup-uv from 5 to 6 in the github-actions group ([#​2395](https://github.com/PyCQA/isort/issues/2395)) @​[dependabot\[bot\]](https://github.com/apps/dependabot) </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:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzIuNSIsInVwZGF0ZWRJblZlciI6IjQxLjEzMi41IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJ0eXBlL2RlcGVuZGVuY2llcyJdfQ==--> Reviewed-on: https://git.tainton.uk/repos/epage/pulls/164 Co-authored-by: Renovate [BOT] <renovate-bot@git.tainton.uk> Co-committed-by: Renovate [BOT] <renovate-bot@git.tainton.uk>
48 lines
917 B
TOML
48 lines
917 B
TOML
[project]
|
|
name = "epage"
|
|
version = "1.0.0"
|
|
description = "Send messages via Pushover."
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"flask>=3.1.0",
|
|
"flask-wtf>=1.2.2",
|
|
"requests>=2.32.3",
|
|
]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"black<25.9.1,>=25.9.0",
|
|
"coverage<8.0.0,>=7.6.10",
|
|
"isort<6.1.1,>=6.1.0",
|
|
"pylint<4.0.0,>=3.3.3",
|
|
"pylint-exit<2.0.0,>=1.2.0",
|
|
"pytest<9.0.0,>=8.3.4",
|
|
"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
|