Remove an erroneous import in the unit tests and add extra test dependencies.

This commit is contained in:
Mirko Bunse 2024-04-17 11:44:23 +02:00
parent db6ff4ab9e
commit 69b8327fe9
2 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,6 @@ import numpy as np
from sklearn.linear_model import LogisticRegression from sklearn.linear_model import LogisticRegression
import quapy as qp import quapy as qp
import util
from quapy.method.aggregative import PACC from quapy.method.aggregative import PACC
from quapy.model_selection import GridSearchQ from quapy.model_selection import GridSearchQ
from quapy.protocol import APP from quapy.protocol import APP

View File

@ -125,6 +125,7 @@ setup(
# projects. # projects.
extras_require={ # Optional extras_require={ # Optional
'bayes': ['jax', 'jaxlib', 'numpyro'], 'bayes': ['jax', 'jaxlib', 'numpyro'],
'tests': ['certifi'],
}, },
# If there are data files included in your packages that need to be # If there are data files included in your packages that need to be