We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3182a76 + c84d4b0 commit d7f0d56Copy full SHA for d7f0d56
2 files changed
.changelog/6455.internal.md
@@ -0,0 +1 @@
1
+github/workflows/ci-lint: Limit setuptools to v81.0.0
.github/workflows/ci-lint.yml
@@ -56,10 +56,11 @@ jobs:
56
- name: Install gitlint
57
run: |
58
python -m pip install gitlint
59
- # Needed for Towncrier fork to work with 3.12 and above
+ # Needed for Towncrier fork to work with 3.12 and above.
60
+ # As of version 82.0.0, pkg_resources is no longer available.
61
- name: Install setuptools
62
- python -m pip install setuptools
63
+ python -m pip install "setuptools<=81.0.0"
64
- name: Install towncrier
65
66
python -m pip install https://github.com/oasisprotocol/towncrier/archive/oasis-master.tar.gz
0 commit comments