From 6ed2d4c02fa7a6c6a363a449e7279351c736e58a Mon Sep 17 00:00:00 2001 From: Lexi Stelter Date: Tue, 30 Apr 2024 15:38:10 +0200 Subject: [PATCH] #116: mypy: Fix missing library stubs for python-dateutil --- setup.cfg | 1 + tox.ini | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 70668f8..ae8085e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -46,3 +46,4 @@ testing = coverage-conditional-plugin ~= 0.5 flake8 ~= 7.0 mypy ~= 1.9 + types-python-dateutil diff --git a/tox.ini b/tox.ini index 90371bd..298ef83 100644 --- a/tox.ini +++ b/tox.ini @@ -24,8 +24,7 @@ deps = flake8 commands = flake8 src/ tests/ [testenv:mypy,py{312,311,310,39,38}-mypy] -skip_install = true -deps = mypy +extras = testing commands = mypy [testenv:clean]