diff --git a/.circleci/config.yml b/.circleci/config.yml index b730ae0ff595a..c28fefa4e96e2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -187,11 +187,6 @@ workflows: - doc-min-dependencies: requires: - lint - - pypy3: - filters: - branches: - only: - - 0.20.X - deploy: requires: - doc diff --git a/sklearn/linear_model/tests/test_sgd.py b/sklearn/linear_model/tests/test_sgd.py index 7171c860254ff..9b4c443ac1993 100644 --- a/sklearn/linear_model/tests/test_sgd.py +++ b/sklearn/linear_model/tests/test_sgd.py @@ -254,7 +254,7 @@ def test_sgd_estimator_params_validation(klass, fit_method, params, err_msg): try: sgd_estimator = klass(**params) except TypeError as err: - if "__init__() got an unexpected keyword argument" in str(err): + if "unexpected keyword argument" in str(err): # skip test if the parameter is not supported by the estimator return raise err