Skip to content

Commit 2336439

Browse files
author
Dmitriy Kunitskiy
authored
bump: amundsencommon and switch to marshmallow3-annotations (#286)
Signed-off-by: Dmitriy Kunitskiy <[email protected]>
1 parent ee0ac63 commit 2336439

9 files changed

+10
-9
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ venv3/
1616
.coverage
1717
.mypy_cache
1818
.pytest_cache
19+
.python-version
1920
**/coverage.xml
2021
**/htmlcov/**
2122

metadata_service/entity/badge.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
import attr
5-
from marshmallow_annotations.ext.attrs import AttrsSchema
5+
from marshmallow3_annotations.ext.attrs import AttrsSchema
66

77

88
@attr.s(auto_attribs=True, kw_only=True)

metadata_service/entity/dashboard_detail.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from amundsen_common.models.popular_table import PopularTable
88
from amundsen_common.models.table import Badge, Tag
99
from amundsen_common.models.user import User
10-
from marshmallow_annotations.ext.attrs import AttrsSchema
10+
from marshmallow3_annotations.ext.attrs import AttrsSchema
1111

1212
from metadata_service.entity.dashboard_query import DashboardQuery
1313

metadata_service/entity/dashboard_query.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from typing import Optional
55

66
import attr
7-
from marshmallow_annotations.ext.attrs import AttrsSchema
7+
from marshmallow3_annotations.ext.attrs import AttrsSchema
88

99

1010
@attr.s(auto_attribs=True, kw_only=True)

metadata_service/entity/dashboard_summary.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import attr
77
from amundsen_common.models.dashboard import DashboardSummary as Summary
8-
from marshmallow_annotations.ext.attrs import AttrsSchema
8+
from marshmallow3_annotations.ext.attrs import AttrsSchema
99

1010

1111
@attr.s(auto_attribs=True, kw_only=True)

metadata_service/entity/description.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
import attr
5-
from marshmallow_annotations.ext.attrs import AttrsSchema
5+
from marshmallow3_annotations.ext.attrs import AttrsSchema
66

77

88
@attr.s(auto_attribs=True, kw_only=True)

metadata_service/entity/tag_detail.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
import attr
5-
from marshmallow_annotations.ext.attrs import AttrsSchema
5+
from marshmallow3_annotations.ext.attrs import AttrsSchema
66

77

88
@attr.s(auto_attribs=True, kw_only=True)

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ typing-extensions==3.7.4
3535

3636
# A common package that holds the models deifnition and schemas that are used
3737
# accross different amundsen repositories.
38-
amundsen-common>=0.8.1
38+
amundsen-common>=0.9.0
3939
amundsen-gremlin>=0.0.7
4040

4141
boto3==1.17.23
@@ -66,4 +66,4 @@ overrides==2.5
6666
typed-ast==1.4.2
6767
isort[colors]~=5.4
6868
marshmallow>=3.0,<=3.6
69-
marshmallow-annotations@git+https://www.github.com/hilearn/marshmallow-annotations.git@a7a2dc96932430369bdef36555082df990ed9bef
69+
marshmallow3-annotations>=1.0.0

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from setuptools import find_packages, setup
77

8-
__version__ = '3.3.0'
8+
__version__ = '3.4.0'
99

1010

1111
requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements.txt')

0 commit comments

Comments
 (0)