Skip to content

Commit 8e1b495

Browse files
committed
🐛 Fix #24 pin python-slugify to <6.0.0
1 parent 53dab57 commit 8e1b495

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

mysql_to_sqlite3/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
__title__ = "mysql-to-sqlite3"
33
__description__ = "A simple Python tool to transfer data from MySQL to SQLite 3"
44
__url__ = "https://github.com/techouse/mysql-to-sqlite3"
5-
__version__ = "1.4.10"
5+
__version__ = "1.4.11"
66
__author__ = "Klemen Tusar"
77
__author_email__ = "techouse@gmail.com"
88
__license__ = "MIT"

requirements_dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pytest-mock
1313
pytest-timeout
1414
pytimeparse>=1.1.8
1515
python-slugify>=3.0.3,<5.0.0 ; python_version<"3.6"
16-
python-slugify>=3.0.3 ; python_version>="3.6"
16+
python-slugify>=3.0.3,<6.0.0 ; python_version>="3.6"
1717
simplejson>=3.16.0
1818
six>=1.12.0
1919
sqlalchemy>=1.3.7,<1.4.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"mysql-connector-python>=8.0.18 ; python_version>='3.6'",
1515
"pytimeparse>=1.1.8",
1616
"python-slugify>=3.0.3,<5.0.0 ; python_version<'3.6'",
17-
"python-slugify>=3.0.3 ; python_version>='3.6'",
17+
"python-slugify>=3.0.3,<6.0.0 ; python_version>='3.6'",
1818
"simplejson>=3.16.0",
1919
"six>=1.12.0",
2020
"tqdm>=4.35.0",

0 commit comments

Comments
 (0)