Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
os: [Ubuntu, macOS, Windows]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
include:
- os: Ubuntu
image: ubuntu-latest
Expand Down
22 changes: 10 additions & 12 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Poetry plugin to export the dependencies to various formats"
authors = [{ name = "Sébastien Eustace", email = "sebastien@eustace.io" }]
license = "MIT"
readme = "README.md"
requires-python = ">=3.9,<4.0"
requires-python = ">=3.10,<4.0"
dependencies = [
"poetry>=2.1.0,<3.0.0",
"poetry-core>=2.1.0,<3.0.0",
Expand Down Expand Up @@ -45,7 +45,6 @@ pytest-github-actions-annotate-failures = "^0.1.7"

[tool.ruff]
fix = true
target-version = "py39"
line-length = 88
extend-exclude = [
"docs/*",
Expand Down
2 changes: 1 addition & 1 deletion src/poetry_plugin_export/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from __future__ import annotations

from poetry.utils._compat import metadata
from importlib import metadata


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