Skip to content

Commit fcfd9f0

Browse files
committed
Port to PEP 735
1 parent df7ea88 commit fcfd9f0

File tree

3 files changed

+54
-46
lines changed

3 files changed

+54
-46
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
- name: Install poetry
2929
run: |
30-
python3 -m pip install --upgrade poetry==2.1.1
30+
python3 -m pip install --upgrade poetry==2.2.0
3131
3232
- name: Setup Python (poetry)
3333
uses: actions/setup-python@v5

poetry.lock

Lines changed: 35 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,24 @@
1-
[tool.poetry]
1+
[project]
22
name = "msys2.org"
33
version = "1.0"
44
description = ""
5-
authors = ["Christoph Reiter <[email protected]>"]
6-
package-mode = false
5+
authors = [{ name = "Christoph Reiter", email = "[email protected]" }]
6+
requires-python = ">=3.10,<4.0"
7+
dependencies = []
8+
9+
[dependency-groups]
10+
dev = [
11+
"mkdocs>=1.1.2,<2",
12+
"mkdocs-material>=9.5.0,<10",
13+
"beautifulsoup4>=4.13.4,<5",
14+
]
715

8-
[tool.poetry.dependencies]
9-
python = "^3.10"
10-
mkdocs = "^1.1.2"
11-
mkdocs-material = "^9.5"
12-
beautifulsoup4 = "^4.13.4"
16+
[tool.uv]
17+
package = false
18+
19+
[tool.poetry]
20+
package-mode = false
1321

1422
[build-system]
15-
requires = ["poetry>=0.12"]
16-
build-backend = "poetry.masonry.api"
23+
requires = ["poetry-core>=2.2.0"]
24+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)