Skip to content

Commit 292661d

Browse files
Pin parse version to >=1.8.4
parse 1.8.4 is the first version of the `case_sensitive` argument introduced. We had this exact issue where this code block failed because the installed _parse_ version was 1.6.x https://github.com/olirice/alembic_utils/blob/master/src/alembic_utils/pg_function.py#L43 https://pypi.org/project/parse/1.8.4/ `>>> parse('SPAM', 'spam', case_sensitive=True) is None`
1 parent 4e6008f commit 292661d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def get_version(package):
3737
"alembic>=1.5.7",
3838
"flupy",
3939
"sqlalchemy>=1.3.0",
40-
"parse",
40+
"parse>=1.8.4",
4141
"typing_extensions",
4242
],
4343
extras_require={

0 commit comments

Comments
 (0)