Skip to content

Commit

Permalink
#4 🚨 fix broken code due to package move; ⬆️ support for Poetry 1.6+
Browse files Browse the repository at this point in the history
  • Loading branch information
d-ryan-ashcraft committed Sep 6, 2023
1 parent 2c6cb50 commit 47124ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ repository = "https://bitbucket.org/cpointe/poetry-monorepo-dependency-plugin"

[tool.poetry.dependencies]
python = "^3.8"
poetry = ">1.2"
poetry-core = "<1.7"
poetry = ">=1.6"
poetry-core = ">=1.7"
cleo = ">=2.0.1"

[tool.poetry.group.dev.dependencies]
Expand All @@ -21,5 +21,5 @@ nose = "^1.3.7"
poetry-monorepo-dependency-plugin = "poetry_monorepo_dependency_plugin.plugin:MonorepoDependencyPlugin"

[build-system]
requires = ["poetry-core>=1.2"]
requires = ["poetry-core>=1.6"]
build-backend = "poetry.core.masonry.api"
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import cleo.io.io
import cleo.io.outputs.output
from poetry.core.pyproject.toml import PyProjectTOML
from poetry.core.semver.version import Version
from poetry.core.constraints.version import Version
from poetry.core.packages.dependency import Dependency
from poetry.core.packages.directory_dependency import DirectoryDependency
from poetry.core.packages.dependency_group import DependencyGroup
Expand Down

0 comments on commit 47124ca

Please sign in to comment.