File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 261261* Fix typo in ident variable name (#619)
262262* Remove black and use only ruff as linter
263263
264- NEXT
265- * Support for Python 3.9 to 3.13
266- * Improve testing with better MariaDB coverage
264+ 1.0.10 16/11/2025
265+ * Fix MySQL 5.7 column name support (#625)
Original file line number Diff line number Diff line change 99# All configuration values have a default; values that are commented out
1010# serve to show the default.
1111
12- import sys
1312import os
13+ import sys
1414
1515# If extensions (or modules to document with autodoc) are in another directory,
1616# add these directories to sys.path here. If the directory is relative to the
4949# The short X.Y version.
5050version = "1.0"
5151# The full version, including alpha/beta/rc tags.
52- release = "1.0.9 "
52+ release = "1.0.10 "
5353
5454# The language for content autogenerated by Sphinx. Refer to documentation
5555# for a list of supported languages.
Original file line number Diff line number Diff line change 11#!/usr/bin/env python
22
33try :
4- from setuptools import setup , Command
4+ from setuptools import Command , setup
55except ImportError :
6- from distutils .core import setup , Command
6+ from distutils .core import Command , setup
77
8- from pathlib import Path
98import sys
9+ from pathlib import Path
1010
1111
1212class TestCommand (Command ):
@@ -22,13 +22,14 @@ def run(self):
2222 """
2323 Finds all the tests modules in tests/, and runs them.
2424 """
25- from pymysqlreplication import tests
2625 import unittest
2726
27+ from pymysqlreplication import tests
28+
2829 unittest .main (tests , argv = sys .argv [:1 ])
2930
3031
31- version = "1.0.9 "
32+ version = "1.0.10 "
3233
3334this_directory = Path (__file__ ).parent
3435long_description = (this_directory / "README.md" ).read_text ()
You can’t perform that action at this time.
0 commit comments