Skip to content

Commit

Permalink
fix: int is too small for a unix timestamp (#2079)
Browse files Browse the repository at this point in the history
* fox: int is too small for a unix timestamp

Signed-off-by: Allison Suarez Miranda <[email protected]>

* removed upper bound for amundsen-common req

Signed-off-by: Allison Suarez Miranda <[email protected]>

Signed-off-by: Allison Suarez Miranda <[email protected]>
  • Loading branch information
allisonsuarez authored Jan 9, 2023
1 parent 306421f commit a2cb0b2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion common/amundsen_common/models/dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class DashboardSummary:
name: str = attr.ib()
url: str = attr.ib()
description: Optional[str] = None
last_successful_run_timestamp: Optional[int] = None
last_successful_run_timestamp: Optional[float] = None
chart_names: Optional[List[str]] = []


Expand Down
2 changes: 1 addition & 1 deletion common/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from setuptools import find_packages, setup

__version__ = '0.30.0'
__version__ = '0.31.0'


requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements-dev.txt')
Expand Down
2 changes: 1 addition & 1 deletion requirements-common.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# It is recommended to always pin the exact version (not range) - otherwise common upgrade won't trigger unit tests
# on all repositories reyling on this file and any issues that arise from common upgrade might be missed.
amundsen-common>=0.27.0,<0.31.0
amundsen-common>=0.27.0
attrs>=19.1.0
boto3==1.17.23
click==7.0
Expand Down

0 comments on commit a2cb0b2

Please sign in to comment.