From 193591ae384d937cf84b91b25998222870e7aac7 Mon Sep 17 00:00:00 2001 From: "PROFIDATA\\SCJA" Date: Tue, 16 Dec 2025 11:56:13 +0100 Subject: [PATCH 1/4] change license in pyproject.toml to new format --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d786f336..14d6ea31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ requires-python = ">=3.8" authors = [ {name = "Inada Naoki", email = "songofacandy@gmail.com"} ] -license = {text = "GNU General Public License v2 or later (GPLv2+)"} +license = "GNU General Public License v2 or later (GPLv2+)" keywords = ["MySQL"] classifiers = [ "Development Status :: 5 - Production/Stable", From a8bca7ed26ab9c2846a1f679d22cc4e750a9b373 Mon Sep 17 00:00:00 2001 From: "PROFIDATA\\SCJA" Date: Tue, 16 Dec 2025 13:34:48 +0100 Subject: [PATCH 2/4] added 3.14 in classifiers in pyproject.toml --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 14d6ea31..2a9f8a2e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ requires-python = ">=3.8" authors = [ {name = "Inada Naoki", email = "songofacandy@gmail.com"} ] -license = "GNU General Public License v2 or later (GPLv2+)" +license = "GNU-General-Public-License-v2-or-later-(GPLv2+)" keywords = ["MySQL"] classifiers = [ "Development Status :: 5 - Production/Stable", @@ -27,6 +27,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Database", "Topic :: Database :: Database Engines/Servers", ] From 11752def16ab1b0c27440961429fa5f6a9bb05c1 Mon Sep 17 00:00:00 2001 From: "PROFIDATA\\SCJA" Date: Tue, 16 Dec 2025 14:27:58 +0100 Subject: [PATCH 3/4] removed License from classifiers in pyproject.toml --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2a9f8a2e..49f868ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,12 +6,11 @@ requires-python = ">=3.8" authors = [ {name = "Inada Naoki", email = "songofacandy@gmail.com"} ] -license = "GNU-General-Public-License-v2-or-later-(GPLv2+)" +license = "GPL-2.0-or-later" keywords = ["MySQL"] classifiers = [ "Development Status :: 5 - Production/Stable", "Environment :: Other Environment", - "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows :: Windows NT/2000", "Operating System :: OS Independent", From 73edbffb39cfffff8641bf5355931e762d34d336 Mon Sep 17 00:00:00 2001 From: "PROFIDATA\\SCJA" Date: Tue, 16 Dec 2025 15:06:57 +0100 Subject: [PATCH 4/4] added 64 bit path to MariaDB Connector to setup.py --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9a1d26b8..0d7c9204 100644 --- a/setup.py +++ b/setup.py @@ -87,7 +87,8 @@ def get_config_win32(options): connector = os.environ.get("MYSQLCLIENT_CONNECTOR", options.get("connector")) if not connector: connector = os.path.join( - os.environ["ProgramFiles"], "MariaDB", "MariaDB Connector C" + os.environ["ProgramFiles"], "MariaDB", "MariaDB Connector C", + os.environ["ProgramFiles"], "MariaDB", "MariaDB Connector C 64-bit", ) extra_objects = []