This commit is contained in:
Georg Richter
2023-07-03 10:13:35 +02:00
2 changed files with 5 additions and 1 deletions

View File

@ -122,6 +122,10 @@ def connect(*args, connectionclass=mariadb.connections.Connection, **kwargs):
Enables server certificate verification.
- ssl:
The connection must use TLS security or it will fail.
- tls_version:
A comma-separated list (without whitespaces) of TLS versions.
Valid versions are TLSv1.0, TLSv1.1,TLSv1.2 and TLSv1.3.
Added in version 1.1.7.
- autocommit=False:
Specifies the autocommit settings.
True will enable autocommit, False will disable it (default).

View File

@ -79,7 +79,7 @@ with open("mariadb/release_info.py", "w") as rel_info:
setup(name='mariadb',
version=PY_MARIADB_VERSION,
python_requires='>=3.7',
python_requires='>=3.8',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',