-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
42 lines (34 loc) · 1.03 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[tool.black]
line-length = 120
[tool.poetry]
package-mode = false
[tool.poetry.dependencies]
python = "3.12.4"
GitPython = "3.1.44"
PyGithub = "2.5.0"
PyYAML = "6.0.2"
semver = "3.0.4"
[tool.poetry.group.dev.dependencies]
black = "25.1.0"
codespell = "2.4.1"
coverage = "7.6.10"
pytest = "8.3.4"
pytest-mock = "3.14.0"
flake8 = "7.1.1"
pep8-naming = "0.14.1"
yamllint = "1.35.1"
[tool.poetry.group.external]
# Provided only for use by boards platforms
# NOTE: This group is a temporary workaround that will be removed at the 2.0.0 release of the action.
optional = true
[tool.poetry.group.external.dependencies]
pyserial = "3.5"
# The dependencies in this group are installed using pipx; NOT Poetry. The use of a `poetry` section is a hack required
# in order to be able to manage updates of these dependencies via Dependabot, as used for all other dependencies.
[tool.poetry.group.pipx]
optional = true
[tool.poetry.group.pipx.dependencies]
poetry = "2.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"