Skip to content

Commit e362021

Browse files
authored
Merge branch 'main' into main
2 parents 2c9e78d + 4bcf3e6 commit e362021

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@ This project adds Python 3 support and fixed many bugs.
1111

1212
**Do Not use Github Issue Tracker to ask help. OSS Maintainer is not free tech support**
1313

14-
When your question looks relating to Python rather than MySQL:
14+
When your question looks relating to Python rather than MySQL/MariaDB:
1515

1616
* Python mailing list [python-list](https://mail.python.org/mailman/listinfo/python-list)
1717
* Slack [pythondev.slack.com](https://pyslackers.com/web/slack)
1818

19-
Or when you have question about MySQL:
19+
Or when you have question about MySQL/MariaDB:
2020

21-
* [MySQL Community on Slack](https://lefred.be/mysql-community-on-slack/)
21+
* [MySQL Support](https://dev.mysql.com/support/)
22+
* [Getting Help With MariaDB](https://mariadb.com/kb/en/getting-help-with-mariadb/)
2223

2324

2425
## Install

doc/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
sphinx~=7.2
2-
sphinx-rtd-theme~=2.0.0
1+
sphinx~=8.0
2+
sphinx-rtd-theme~=3.0.0

doc/user_guide.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ MySQLdb User's Guide
88
Introduction
99
------------
1010

11-
MySQLdb is an interface to the popular MySQL
12-
database server that provides the Python database API.
11+
MySQLdb is an interface to the popular MySQL or MariaDB
12+
database servers that provides the Python database API.
1313

1414
Installation
1515
------------

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ requires-python = ">=3.8"
77
authors = [
88
{name = "Inada Naoki", email = "[email protected]"}
99
]
10-
license = {text = "GNU General Public License v2 (GPLv2)"}
10+
license = {text = "GNU General Public License v2 or later (GPLv2+)"}
1111
keywords = ["MySQL"]
1212
classifiers = [
1313
"Development Status :: 5 - Production/Stable",
1414
"Environment :: Other Environment",
15-
"License :: OSI Approved :: GNU General Public License (GPL)",
15+
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
1616
"Operating System :: MacOS :: MacOS X",
1717
"Operating System :: Microsoft :: Windows :: Windows NT/2000",
1818
"Operating System :: OS Independent",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
def find_package_name():
1616
"""Get available pkg-config package name"""
1717
# Ubuntu uses mariadb.pc, but CentOS uses libmariadb.pc
18-
packages = ["mysqlclient", "mariadb", "libmariadb"]
18+
packages = ["mysqlclient", "mariadb", "libmariadb", "perconaserverclient"]
1919
for pkg in packages:
2020
try:
2121
cmd = f"pkg-config --exists {pkg}"

0 commit comments

Comments
 (0)