Skip to content

Commit 5b02472

Browse files
authored
Bump SQLAlchemy==1.3.24 to support lnt on Windows (#33)
LNT crashes on windows on startup with following error in SQLAlchemy: AttributeError: module 'time' has no attribute 'clock' The `time.clock` function was removed in Python 3.8, causing this error in SQLAlchemy code. The issue was fixed by sqlalchemy/sqlalchemy@003333f This patch upgrades SQLAlchemy to 1.3.24 which resolves above error. Version 1.3.24 seemed like a reasonable upgrade containing the required fix as it does not contain any backward incompatible changes in some of the higher version of SQLAlchemy.
1 parent d6a7c2c commit 5b02472

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
@@ -121,7 +121,7 @@
121121
"Flask-RESTful==0.3.4",
122122
"Jinja2==2.11.3",
123123
"MarkupSafe==1.1.1",
124-
"SQLAlchemy==1.2.19",
124+
"SQLAlchemy==1.3.24",
125125
"Werkzeug==0.15.6",
126126
"itsdangerous==0.24",
127127
"python-gnupg==0.3.7",

0 commit comments

Comments
 (0)