From 8b030dc0c9c4e8e1746be2b2663051fb1735b565 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Lamotte Date: Thu, 2 Apr 2026 16:15:23 +0200 Subject: [PATCH 1/4] AB#422292 configure .sdlcforge.json --- .sdlcforge.json | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .sdlcforge.json diff --git a/.sdlcforge.json b/.sdlcforge.json new file mode 100644 index 0000000..0f1af14 --- /dev/null +++ b/.sdlcforge.json @@ -0,0 +1,38 @@ +{ + "_comment": "SDLC Forge configuration file for stratplotlib", + "schema_version": "1.0", + "projects": [ + { + "type": "python", + "name": "stratplotlib", + "path": "", + "runtime": { + "name": "python", + "version": "3.8" + }, + "build_tool": { + "name": "pip", + "version": "24.0" + }, + "dependency": { + "command": "pip install -e ." + }, + "build": { + "command": "python setup.py sdist bdist_wheel" + }, + "artefacts": { + "source_code": [ + "stratomap/" + ], + "deliverable": [ + "dist/*.whl", + "dist/*.tar.gz" + ], + "dependency_manifests": [ + "setup.py", + "setup.cfg" + ] + } + } + ] +} From 00007aa38e29d4d91a731e8f66ae64a27c32962f Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Lamotte Date: Thu, 2 Apr 2026 16:56:58 +0200 Subject: [PATCH 2/4] =?UTF-8?q?AB#422292=20fix=20CI=20=E2=80=94=20fix=20se?= =?UTF-8?q?tup.py=20package=20name=20(stratomap),=20upgrade=20runtime=20to?= =?UTF-8?q?=203.13,=20fix=20build=20command=20(wheel)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .sdlcforge.json | 8 ++++---- setup.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.sdlcforge.json b/.sdlcforge.json index 0f1af14..30edbf9 100644 --- a/.sdlcforge.json +++ b/.sdlcforge.json @@ -8,17 +8,17 @@ "path": "", "runtime": { "name": "python", - "version": "3.8" + "version": "3.13" }, "build_tool": { - "name": "pip", - "version": "24.0" + "name": "setuptools", + "version": "3.8" }, "dependency": { "command": "pip install -e ." }, "build": { - "command": "python setup.py sdist bdist_wheel" + "command": "pip install wheel && python setup.py bdist_wheel" }, "artefacts": { "source_code": [ diff --git a/setup.py b/setup.py index d1d4655..5875042 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='stratplotlib', - packages=['stratplotlib'], + packages=['stratomap'], version=0.1, description='A geospatial visualization library designed for DataFrames', author='StratoDem Analytics', From ea47d8055ca3250de5f2c20e446d499dafbfc52c Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Lamotte Date: Thu, 2 Apr 2026 17:03:03 +0200 Subject: [PATCH 3/4] =?UTF-8?q?AB#422292=20fix=20CI=20=E2=80=94=20replace?= =?UTF-8?q?=20distutils=20with=20setuptools=20(removed=20in=20Python=203.1?= =?UTF-8?q?2+)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5875042..bdc98de 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from distutils.core import setup +from setuptools import setup setup( name='stratplotlib', From e637330d78ad6476fd2bf1d8b740ea21048654cf Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Lamotte Date: Thu, 2 Apr 2026 17:08:58 +0200 Subject: [PATCH 4/4] =?UTF-8?q?AB#422292=20fix=20CI=20=E2=80=94=20add=20se?= =?UTF-8?q?tuptools=20to=20build=20command=20(not=20bundled=20with=20pip?= =?UTF-8?q?=2025+)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .sdlcforge.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.sdlcforge.json b/.sdlcforge.json index 30edbf9..b35f344 100644 --- a/.sdlcforge.json +++ b/.sdlcforge.json @@ -18,7 +18,7 @@ "command": "pip install -e ." }, "build": { - "command": "pip install wheel && python setup.py bdist_wheel" + "command": "pip install setuptools wheel && python setup.py bdist_wheel" }, "artefacts": { "source_code": [