Skip to content

Commit

Permalink
patch: Remove unneeded packages key in poetry config (#182)
Browse files Browse the repository at this point in the history
`packages` key not needed since all packages follow standard poetry
project structure: https://python-poetry.org/docs/pyproject/#packages
  • Loading branch information
carlcsaposs-canonical authored Jun 7, 2024
1 parent e90eb63 commit 227dee3
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 5 deletions.
1 change: 1 addition & 0 deletions _get_release_semantic_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Get release semantic version"""

import os
import re
import subprocess
Expand Down
1 change: 0 additions & 1 deletion python/cli/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ description = ""
license = "Apache-2.0"
authors = ["Carl Csaposs <[email protected]>"]
readme = "README.md"
packages = [{include = "data_platform_workflows_cli"}]

[tool.poetry.scripts]
redact-secrets = "data_platform_workflows_cli.redact_secrets:main"
Expand Down
1 change: 0 additions & 1 deletion python/pytest_plugins/github_secrets/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ readme = "README.md"
classifiers = [
"Framework :: Pytest",
]
packages = [{include = "pytest_github_secrets"}]

[tool.poetry.plugins."pytest11"]
github_secrets = "pytest_github_secrets._plugin"
Expand Down
1 change: 0 additions & 1 deletion python/pytest_plugins/microceph/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ readme = "README.md"
classifiers = [
"Framework :: Pytest",
]
packages = [{include = "pytest_microceph"}]

[tool.poetry.plugins."pytest11"]
microceph = "pytest_microceph._plugin"
Expand Down
1 change: 0 additions & 1 deletion python/pytest_plugins/pytest_operator_cache/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ readme = "README.md"
classifiers = [
"Framework :: Pytest",
]
packages = [{include = "pytest_operator_cache"}]

[tool.poetry.plugins."pytest11"]
operator_cache = "pytest_operator_cache._plugin"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ readme = "README.md"
classifiers = [
"Framework :: Pytest",
]
packages = [{include = "pytest_operator_groups"}]

[tool.poetry.plugins."pytest11"]
operator_groups = "pytest_operator_groups._plugin"
Expand Down

0 comments on commit 227dee3

Please sign in to comment.