pypilot/pyproject.toml
Renovate [BOT] 95ad195f1f
Some checks failed
Security / sonarqube (push) Failing after 2m2s
Security / snyk (push) Successful in 1m48s
Release / Tag release (push) Successful in 19s
Release / Create Release (push) Successful in 5s
Release / Publish Docker Images (push) Successful in 3m13s
Release / Get Release ID (push) Successful in 6s
Release / Build Wheel File (push) Successful in 36s
fix(deps): update dependency tomlkit to v0.13.3 (#343)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [tomlkit](https://github.com/sdispater/tomlkit) | project.dependencies | patch | `==0.13.2` -> `==0.13.3` |

---

### Release Notes

<details>
<summary>sdispater/tomlkit (tomlkit)</summary>

### [`v0.13.3`](https://github.com/sdispater/tomlkit/blob/HEAD/CHANGELOG.md#0133---2025-06-05)

[Compare Source](https://github.com/sdispater/tomlkit/compare/0.13.2...0.13.3)

##### Added

-   Add `.item()` method to array and tables to retrieve an item by key. ([#&#8203;390](https://github.com/python-poetry/tomlkit/issues/390))

##### Fixed

-   Fix missing newline when parsing a separated array of tables without trailing new line. ([#&#8203;381](https://github.com/python-poetry/tomlkit/issues/381))
-   Fix non-existing key error when deleting an item from an out-of-order table. ([#&#8203;383](https://github.com/python-poetry/tomlkit/issues/383))
-   Ensure newline is added between the plain values and the first table. ([#&#8203;387](https://github.com/python-poetry/tomlkit/issues/387))
-   Fix repeated whitespace when removing an array item. ([#&#8203;405](https://github.com/python-poetry/tomlkit/issues/405))
-   Fix invalid serialization after removing array item if the comma is on its own line. ([#&#8203;408](https://github.com/python-poetry/tomlkit/issues/408))
-   Fix serialization of a nested dotted key table. ([#&#8203;411](https://github.com/python-poetry/tomlkit/issues/411))
-   Refine the error message when use non-string as single key. ([#&#8203;412](https://github.com/python-poetry/tomlkit/issues/412))
-   Fix invalid serialization after overwriting a key of a out-of-order table. ([#&#8203;414](https://github.com/python-poetry/tomlkit/issues/414))

</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:eyJjcmVhdGVkSW5WZXIiOiI0MC40MS40IiwidXBkYXRlZEluVmVyIjoiNDAuNDEuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsidHlwZS9kZXBlbmRlbmNpZXMiXX0=-->

Reviewed-on: https://git.tainton.uk/repos/pypilot/pulls/343
Co-authored-by: Renovate [BOT] <renovate-bot@git.tainton.uk>
Co-committed-by: Renovate [BOT] <renovate-bot@git.tainton.uk>
2025-06-06 18:42:10 +02:00

57 lines
1.2 KiB
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 = [
"astroid==3.3.10",
"attrs==25.3.0",
"certifi==2025.4.26",
"charset-normalizer==3.4.2",
"click==8.2.1",
"dill==0.4.0",
"exceptiongroup==1.3.0",
"idna==3.10",
"iniconfig==2.1.0",
"lazy-object-proxy==1.11.0",
"mccabe==0.7.0",
"mypy-extensions==1.1.0",
"packaging==25.0",
"pathspec==0.12.1",
"platformdirs==4.3.8",
"pluggy==1.6.0",
"py==1.11.0",
"pyparsing==3.2.3",
"requests==2.32.3",
"six==1.17.0",
"tabulate==0.9.0",
"tomli==2.2.1",
"tomlkit==0.13.3",
"urllib3==2.4.0",
"wrapt==1.17.2",
]
[project.scripts]
app = "app.main:main"
[tool.uv]
dev-dependencies = [
"black<25.2.0,>=25.1.0",
"coverage<8.0.0,>=7.5.0",
"pylint<4.0.0,>=3.1.0",
"pylint-exit<2.0.0,>=1.2.0",
"pytest<9.0.0,>=8.1.1",
"requests-mock<2.0.0,>=1.12.1",
]
[tool.pdm.build]
includes = []
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"