Files
pypilot/pyproject.toml
renovate[bot] f734eb8a76 fix(deps): update dependency tabulate to v0.10.0 (#417)
This PR contains the following updates:

| Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|
| [tabulate](https://github.com/astanin/python-tabulate) | `==0.9.0` → `==0.10.0` | ![age](https://developer.mend.io/api/mc/badges/age/pypi/tabulate/0.10.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/tabulate/0.9.0/0.10.0?slim=true) |

---

### Release Notes

<details>
<summary>astanin/python-tabulate (tabulate)</summary>

### [`v0.10.0`](https://github.com/astanin/python-tabulate/compare/v0.9.0...v0.10.0)

[Compare Source](https://github.com/astanin/python-tabulate/compare/v0.9.0...v0.10.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:eyJjcmVhdGVkSW5WZXIiOiI0My41My4wIiwidXBkYXRlZEluVmVyIjoiNDMuNTMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsidHlwZS9kZXBlbmRlbmNpZXMiXX0=-->

Reviewed-on: #417
Reviewed-by: Luke Tainton <luke@tainton.uk>
Co-authored-by: renovate[bot] <renovate-bot@git.tainton.uk>
Co-committed-by: renovate[bot] <renovate-bot@git.tainton.uk>
2026-03-04 23:26:07 +00:00

35 lines
639 B
TOML

[project]
name = "ipilot"
version = "0.0.0"
description = "IP Information Lookup Tool"
readme = "README.md"
authors = [
{name = "Luke Tainton", email = "luke@tainton.uk"},
]
requires-python = "<4.0,>=3.11"
dependencies = [
"requests==2.32.5",
"tabulate==0.10.0",
]
[project.scripts]
app = "app.main:main"
[dependency-groups]
dev = [
"black<26.1.1,>=26.1.0",
"coverage<8.0.0,>=7.5.0",
"pylint<4.1.0,>=4.0.4",
"pylint-exit<2.0.0,>=1.2.0",
"pytest<9.1.0,>=9.0.0",
"requests-mock<2.0.0,>=1.12.1",
]
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"