Skip to content

Commit 1dc32bc

Browse files
Bump apache-beam[gcp] from 2.27.0 to 2.29.0 (#386)
* Bump apache-beam[gcp] from 2.27.0 to 2.29.0 Bumps [apache-beam[gcp]](https://github.com/apache/beam) from 2.27.0 to 2.29.0. - [Release notes](https://github.com/apache/beam/releases) - [Changelog](https://github.com/apache/beam/blob/master/CHANGES.md) - [Commits](apache/beam@v2.27.0...v2.29.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * replaced mock with unittest.mock Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: Daniel Ecer <de-code@users.noreply.github.com>
1 parent 3b7fb90 commit 1dc32bc

15 files changed

+15
-15
lines changed

requirements.prereq.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
apache_beam[gcp]==2.27.0
1+
apache_beam[gcp]==2.29.0

tests/examples/grobid_service_pdf_to_xml_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import logging
2-
from mock import patch, DEFAULT
2+
from unittest.mock import patch, DEFAULT
33

44
import pytest
55

tests/pipeline_runners/beam_pipeline_runner_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import logging
22
from pathlib import Path
33

4-
from mock import patch, MagicMock, DEFAULT, ANY
4+
from unittest.mock import patch, MagicMock, DEFAULT, ANY
55

66
import pytest
77

tests/pipeline_runners/simple_pipeline_runner_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from mock import patch, MagicMock
1+
from unittest.mock import patch, MagicMock
22

33
import pytest
44

tests/pipelines/__init___test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from mock import patch, MagicMock
1+
from unittest.mock import patch, MagicMock
22

33
from six import text_type
44

tests/pipelines/api_pipeline_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import argparse
22
from functools import reduce # pylint: disable=W0622
33

4-
from mock import patch, MagicMock
4+
from unittest.mock import patch, MagicMock
55

66
import pytest
77

tests/pipelines/cermine_pipeline_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import argparse
22
from functools import reduce # pylint: disable=W0622
33

4-
from mock import patch, MagicMock
4+
from unittest.mock import patch, MagicMock
55

66
import pytest
77

tests/pipelines/contentmine_pipeline_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import argparse
22
from functools import reduce # pylint: disable=W0622
33

4-
from mock import patch, MagicMock
4+
from unittest.mock import patch, MagicMock
55

66
import pytest
77

tests/pipelines/doc_to_type_pipeline_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import os
2-
from mock import patch
2+
from unittest.mock import patch
33

44
import pytest
55

tests/pipelines/grobid_pipeline_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import argparse
22
from functools import reduce # pylint: disable=W0622
33

4-
from mock import patch, MagicMock
4+
from unittest.mock import patch, MagicMock
55

66
import pytest
77

0 commit comments

Comments
 (0)