diff --git a/.github/workflows/python-deps.yml b/.github/workflows/python-deps.yml index 3c616cf67..313e5f768 100644 --- a/.github/workflows/python-deps.yml +++ b/.github/workflows/python-deps.yml @@ -18,6 +18,11 @@ jobs: os: [ubuntu-latest, macos-latest] python_deps_type: [pipenv, poetry, requirements, setup_py] python_version: [2, 3] + exclude: + # Python2 and poetry are not supported. See https://github.com/actions/setup-python/issues/374 + - python_version: 2 + python_deps_type: poetry + env: PYTHON_DEPS_TYPE: ${{ matrix.python_deps_type }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 51a9b378f..1bddec885 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## [UNRELEASED] -No user facing changes. +- The combination of python2 and poetry is no longer supported. See https://github.com/actions/setup-python/issues/374 for more details. ## 2.1.14 - 22 Jun 2022