From 261ddccada388c0ee1ec3e691e8d84a7845b2fac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Balajti?= <mate.balajti@unibas.ch> Date: Thu, 10 Aug 2023 17:13:38 +0200 Subject: [PATCH] fix: remove stubs from requirements --- requirements_dev.txt | 4 +--- tests/test_main.py | 2 +- tsg/main.py | 4 ++-- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/requirements_dev.txt b/requirements_dev.txt index af0c609..558b809 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 a2f96d6..fd7718a 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 f85a8c6..c86c741 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__) -- GitLab