Update mock import to work with Python 3.13

This commit is contained in:
Dāvis Mosāns 2025-03-06 23:48:20 +02:00
parent b3c46c315e
commit 7b1e07de92
No known key found for this signature in database
GPG Key ID: ABA077CA3812CCB9
5 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
import pytest
from mock import Mock
from unittest.mock import Mock
from spacy.tokens import Doc, Span, Token
from spacy.tokens.underscore import Underscore

View File

@ -3,7 +3,7 @@ import pickle
import re
import pytest
from mock import Mock
from unittest.mock import Mock
from spacy.matcher import DependencyMatcher
from spacy.tokens import Doc, Token

View File

@ -1,5 +1,5 @@
import pytest
from mock import Mock
from unittest.mock import Mock
from spacy.matcher import Matcher
from spacy.tokens import Doc, Span, Token

View File

@ -2,7 +2,7 @@ import warnings
import pytest
import srsly
from mock import Mock
from unittest.mock import Mock
from spacy.lang.en import English
from spacy.matcher import Matcher, PhraseMatcher

View File

@ -1,5 +1,5 @@
import pytest
from mock import Mock
from unittest.mock import Mock
from spacy.language import Language
from spacy.pipe_analysis import get_attr_info, validate_attrs