Skip to content

Commit f3c85a1

Browse files
Merge pull request #1121 from RonnyPfannschmidt/ronny/fix-1112-unpin-setuptools-for-broken
fix #1112 - unpin minimum setuptools due to ubuntu lts bugs
2 parents 62ae640 + af0ff98 commit f3c85a1

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Fixed
66

77
- fix #1119: also include pre/post release details in version_tuple
8+
- fix #1112: unpin setuptools for own dependencies due to ubuntu lts bugs
89

910

1011
## v8.2.0

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ dynamic = [
4242
]
4343
dependencies = [
4444
"packaging>=20",
45-
"setuptools>=61",
45+
# https://github.com/pypa/setuptools-scm/issues/1112 - re-pin in a breaking release
46+
"setuptools", # >=61",
4647
'tomli>=1; python_version < "3.11"',
4748
'typing-extensions; python_version < "3.10"',
4849
]

0 commit comments

Comments
 (0)