From 5e16fca8c5a85a67424f44c931e1b1e6a2c2f071 Mon Sep 17 00:00:00 2001 From: Michal Zielenkiewicz Date: Mon, 30 Oct 2023 15:10:56 +0100 Subject: [PATCH] Install setuptools to make Towncrier fork work with Python 3.12 --- .changelog/262.internal.md | 1 + .github/workflows/ci-lint.yml | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 .changelog/262.internal.md diff --git a/.changelog/262.internal.md b/.changelog/262.internal.md new file mode 100644 index 0000000..af5cf40 --- /dev/null +++ b/.changelog/262.internal.md @@ -0,0 +1 @@ +Install setuptools to make Towncrier fork work with Python 3.12 diff --git a/.github/workflows/ci-lint.yml b/.github/workflows/ci-lint.yml index 5ae7820..6096210 100644 --- a/.github/workflows/ci-lint.yml +++ b/.github/workflows/ci-lint.yml @@ -45,6 +45,10 @@ jobs: - name: Install gitlint run: | python -m pip install gitlint + # Needed for Towncrier fork to work with 3.12 and above + - name: Install setuptools + run: | + python -m pip install setuptools - name: Install towncrier run: | python -m pip install https://github.com/oasisprotocol/towncrier/archive/oasis-master.tar.gz