diff --git a/requirements_dev.txt b/requirements_dev.txt
index af0c6091bdc0976a710b5c0175a0ed653e3bb9d7..558b80916bdb2098860ee5ace6cf118bbcbe3193 100644
--- a/requirements_dev.txt
+++ b/requirements_dev.txt
@@ -1,12 +1,10 @@
 matplotlib
 pandas
-pandas-stubs
 pip
 tqdm
-types-tqdm
-flake8-docstrings
 mypy
 flake8
+flake8-docstrings
 pytest
 pylint
 coverage
diff --git a/tests/test_main.py b/tests/test_main.py
index a2f96d69043e8c779828745e0c25a8e530499ca4..fd7718a54c208a4b8e0258dc8ab20f3315b8ba08 100644
--- a/tests/test_main.py
+++ b/tests/test_main.py
@@ -1,6 +1,6 @@
 """Tests for main module."""
 
-import pandas as pd
+import pandas as pd  # type: ignore
 from tsg.main import Gtf, TranscriptGenerator, dict_to_str, str_to_dict
 
 
diff --git a/tsg/main.py b/tsg/main.py
index f85a8c6898f95b1b1605f8704dc310a95fb0fc98..c86c741937c3a47dbe2ea304ca6d7a3cba4bebed 100644
--- a/tsg/main.py
+++ b/tsg/main.py
@@ -3,8 +3,8 @@
 import logging
 
 import numpy as np
-import pandas as pd
-from tqdm import tqdm
+import pandas as pd  # type: ignore
+from tqdm import tqdm  # type: ignore
 
 
 LOG = logging.getLogger(__name__)