We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b1bfe8 commit 6872450Copy full SHA for 6872450
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+# 2.1.3
2
+
3
+* [FIX] add packaging as a dependency
4
5
# 2.1.2
6
7
* [FIX] throw more comprehensive error messages when translating column types
pyproject.toml
@@ -46,6 +46,7 @@ dependencies = [
46
"tabulate",
47
"Unidecode>=1.3.6",
48
"typing_extensions",
49
+ "packaging",
50
]
51
dynamic = ["version"]
52
sqlite3_to_mysql/__init__.py
@@ -1,4 +1,4 @@
"""Utility to transfer data from SQLite 3 to MySQL."""
-__version__ = "2.1.2"
+__version__ = "2.1.3"
from .transporter import SQLite3toMySQL
0 commit comments