From 2115bd561bcff534e23c365e48f52e1821d9e430 Mon Sep 17 00:00:00 2001 From: Siegfried Weber Date: Fri, 3 Feb 2023 13:31:08 +0100 Subject: [PATCH 1/2] Pin setuptools to version 66.1.1 --- superset/CHANGELOG.md | 11 +++++++++++ superset/Dockerfile | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/superset/CHANGELOG.md b/superset/CHANGELOG.md index 26ad43f5c..432985629 100644 --- a/superset/CHANGELOG.md +++ b/superset/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [Unreleased] + +### Changed + +- setuptools pinned to version 66.1.1 because newer versions are not + compatible with the supported Superset versions. With version 67.0.0, + the requirements of Superset cannot be parsed anymore (see also + https://github.com/pypa/setuptools/pull/3790) [(#307)]. + +[#307]: https://github.com/stackabletech/docker-images/pull/307 + ## [superset1.5.1-stackable0.2.0] - 2022-07-13 - Add Trino sqlalchemy library ([#153]). diff --git a/superset/Dockerfile b/superset/Dockerfile index f4813701f..1020b1273 100644 --- a/superset/Dockerfile +++ b/superset/Dockerfile @@ -27,7 +27,7 @@ RUN microdnf update \ && pip install \ --no-cache-dir \ --upgrade \ - setuptools \ + setuptools==66.1.1 \ pip \ && pip install \ --no-cache-dir \ From 377265d99adeb5262dbb82b0c0cea7db702649b6 Mon Sep 17 00:00:00 2001 From: Siegfried Weber Date: Fri, 3 Feb 2023 14:20:53 +0100 Subject: [PATCH 2/2] Fix markdownlint warnings --- superset/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset/CHANGELOG.md b/superset/CHANGELOG.md index 432985629..bb4db784e 100644 --- a/superset/CHANGELOG.md +++ b/superset/CHANGELOG.md @@ -7,7 +7,7 @@ - setuptools pinned to version 66.1.1 because newer versions are not compatible with the supported Superset versions. With version 67.0.0, the requirements of Superset cannot be parsed anymore (see also - https://github.com/pypa/setuptools/pull/3790) [(#307)]. + ) ([#307]). [#307]: https://github.com/stackabletech/docker-images/pull/307