aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2023-01-16 15:01:22 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2023-01-16 15:01:22 +0100
commit1fd10b6623d334ebc439231c43380789f8a67213 (patch)
tree875b1d1cdb9d231a1dd5614cd6505f8279dd17bb /pyproject.toml
parentchg: [dependencies] Updated poetry project config and pip-audit. (diff)
downloadnewspipe-1fd10b6623d334ebc439231c43380789f8a67213.tar.gz
newspipe-1fd10b6623d334ebc439231c43380789f8a67213.tar.bz2
newspipe-1fd10b6623d334ebc439231c43380789f8a67213.zip
Added __init_.py in newspipe module (fixes a mypy issue). !minor
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 0eb9acd5..5eb5bf45 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -32,7 +32,7 @@ python-dateutil = "^2.8.1"
psycopg2-binary = "^2.9.1"
flask-talisman = "^0.8.1"
feedparser = "^6.0.8"
-mypy = "^0.920"
+mypy = "^0.991"
[tool.poetry.group.dev.dependencies ]
sqlalchemy-schemadisplay = "^1.3"
@@ -42,6 +42,7 @@ black = "^22.3.0"
pyupgrade = "^2.34.0"
reorder-python-imports = "^3.1.0"
pip-audit = "^2.4.3"
+types-python-dateutil = "^2.8.19.5"
[build-system]
requires = ["poetry>=1.3.1"]
bgstack15