Skip to content

Commit 570b71b

Browse files
committed
drop support for Python 3.9 and ensure compatibility with Poetry 2.3
1 parent c54eded commit 570b71b

File tree

4 files changed

+13
-16
lines changed

4 files changed

+13
-16
lines changed

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
matrix:
2121
os: [Ubuntu, macOS, Windows]
22-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
22+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2323
include:
2424
- os: Ubuntu
2525
image: ubuntu-latest

poetry.lock

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

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Poetry plugin to export the dependencies to various formats"
55
authors = [{ name = "Sébastien Eustace", email = "[email protected]" }]
66
license = "MIT"
77
readme = "README.md"
8-
requires-python = ">=3.9,<4.0"
8+
requires-python = ">=3.10,<4.0"
99
dependencies = [
1010
"poetry>=2.1.0,<3.0.0",
1111
"poetry-core>=2.1.0,<3.0.0",
@@ -45,7 +45,6 @@ pytest-github-actions-annotate-failures = "^0.1.7"
4545

4646
[tool.ruff]
4747
fix = true
48-
target-version = "py39"
4948
line-length = 88
5049
extend-exclude = [
5150
"docs/*",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import annotations
22

3-
from poetry.utils._compat import metadata
3+
from importlib import metadata
44

55

66
__version__ = metadata.version("poetry-plugin-export") # type: ignore[no-untyped-call]

0 commit comments

Comments
 (0)