diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index af810ff052e..6b8c9160ab5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -96,7 +96,7 @@ jobs: with: path: poetry-plugin-export repository: python-poetry/poetry-plugin-export - ref: refs/tags/${{ steps.poetry-plugin-export-version.outputs.version }} + ref: main - name: Run pytest (poetry-plugin-export) run: poetry run python -m pytest -p no:sugar -q poetry-plugin-export/tests/ diff --git a/poetry.lock b/poetry.lock index 51c53117159..20d6f3ed61f 100644 --- a/poetry.lock +++ b/poetry.lock @@ -415,10 +415,17 @@ version = "1.0.1" description = "Poetry plugin to export the dependencies to various formats" category = "main" optional = false -python-versions = ">=3.7,<4.0" +python-versions = "^3.7" +develop = false [package.dependencies] -poetry = ">=1.2.0b1dev0,<2.0.0" +poetry = "^1.2.0b1dev0" + +[package.source] +type = "git" +url = "https://github.com/python-poetry/poetry-export-plugin" +reference = "main" +resolved_reference = "04e7b2e92deafdc3498156c592714c1000ad2bc0" [[package]] name = "pre-commit" @@ -728,7 +735,7 @@ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest- [metadata] lock-version = "1.1" python-versions = "^3.7" -content-hash = "2e47b9e4845d8570820dea3bdc3c3b46e9b9aa0e566600ee671a806161c89127" +content-hash = "c635f4754c368a76f37a7f2e1e7b0100828dfb43a0210c002fafd211ce744fcd" [metadata.files] atomicwrites = [ @@ -1007,10 +1014,7 @@ pluggy = [ {file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"}, ] poetry-core = [] -poetry-plugin-export = [ - {file = "poetry-plugin-export-1.0.1.tar.gz", hash = "sha256:e2a87bef5b05cb37eee67fb25d9e4f8e8d538ab64a7ec582ab207366722b9dbe"}, - {file = "poetry_plugin_export-1.0.1-py3-none-any.whl", hash = "sha256:83902686faa7820be7e445978562c852dda94568bf63cc48ec47f55b250f1f40"}, -] +poetry-plugin-export = [] pre-commit = [ {file = "pre_commit-2.18.1-py2.py3-none-any.whl", hash = "sha256:02226e69564ebca1a070bd1f046af866aa1c318dbc430027c50ab832ed2b73f2"}, {file = "pre_commit-2.18.1.tar.gz", hash = "sha256:5d445ee1fa8738d506881c5d84f83c62bb5be6b2838e32207433647e8e5ebe10"}, diff --git a/pyproject.toml b/pyproject.toml index 2e935e55b20..88acbec643a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,7 @@ generate-setup-file = false python = "^3.7" poetry-core = {git = "https://github.com/abn/poetry-core", branch = "util-link-pep-658"} -poetry-plugin-export = "^1.0" +poetry-plugin-export = {git = "https://github.com/python-poetry/poetry-export-plugin", rev = "main"} cachecontrol = { version = "^0.12.9", extras = ["filecache"] } cachy = "^0.3.0" cleo = "^1.0.0a4"