Skip to content

Commit f987c12

Browse files
authored
Bump dependencies to get working on Python 3.12 (#22)
This bumps some dependencies so that they no longer use the old collections module, which fixes errors like this on Python 3.12 (and possibly earlier?) ImportError: cannot import name 'Container' from 'collections' After this I was able to get lnt running via $ python -m venv venv $ source venv/bin/activate $ pip install setuptools $ python setup.py develop $ python -m lnt.lnttool.main --version I only bumped the packages as much as needed, so they're not fully up-to-date.
1 parent 7688741 commit f987c12

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,10 @@
119119
"aniso8601==1.2.0",
120120
"Flask==0.12.2",
121121
"Flask-RESTful==0.3.4",
122-
"Jinja2==2.7.2",
123-
"MarkupSafe==0.23",
122+
"Jinja2==2.11.3",
123+
"MarkupSafe==1.1.1",
124124
"SQLAlchemy==1.2.19",
125-
"Werkzeug==0.12.2",
125+
"Werkzeug==0.15.6",
126126
"itsdangerous==0.24",
127127
"python-gnupg==0.3.7",
128128
"pytz==2016.10",

0 commit comments

Comments
 (0)