From 330d1c97924f5f082060a2eb328a197031750908 Mon Sep 17 00:00:00 2001 From: Christoph Scheuch <19249734+christophscheuch@users.noreply.github.com> Date: Fri, 22 Aug 2025 10:58:40 +0200 Subject: [PATCH 1/4] Create pyproject.toml --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..aa9739a --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["setuptools>=61", "wheel", "build"] +build-backend = "setuptools.build_meta" From 509a2c37bcfcfe1b67a5d6d54819487f1c193307 Mon Sep 17 00:00:00 2001 From: Christoph Scheuch <19249734+christophscheuch@users.noreply.github.com> Date: Fri, 22 Aug 2025 11:00:40 +0200 Subject: [PATCH 2/4] Create setup.cfg --- setup.cfg | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..d130342 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,13 @@ +[metadata] +name = adjustText + +[options] +packages = find: +python_requires = >=3.8 +install_requires = + matplotlib>=3.2 + numpy>=1.20 + scipy>=1.4.0 + +[bdist_wheel] +universal = 1 \ No newline at end of file From 133eb754c69d9d40d57d068ae4a4ef90ba724175 Mon Sep 17 00:00:00 2001 From: Christoph Scheuch <19249734+christophscheuch@users.noreply.github.com> Date: Fri, 22 Aug 2025 11:00:49 +0200 Subject: [PATCH 3/4] Bump version to 1.3.1 --- adjustText/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adjustText/_version.py b/adjustText/_version.py index 67bc602..9c73af2 100644 --- a/adjustText/_version.py +++ b/adjustText/_version.py @@ -1 +1 @@ -__version__ = "1.3.0" +__version__ = "1.3.1" From 4c7f820afe3d8c6f1d2a781e36c5486ad746f6e7 Mon Sep 17 00:00:00 2001 From: Christoph Scheuch <19249734+christophscheuch@users.noreply.github.com> Date: Fri, 22 Aug 2025 11:12:05 +0200 Subject: [PATCH 4/4] Update setup.cfg --- setup.cfg | 3 --- 1 file changed, 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index d130342..0513775 100644 --- a/setup.cfg +++ b/setup.cfg @@ -8,6 +8,3 @@ install_requires = matplotlib>=3.2 numpy>=1.20 scipy>=1.4.0 - -[bdist_wheel] -universal = 1 \ No newline at end of file