From 74003ce7958833e13ea1f606ecf1b56180d6ff1d Mon Sep 17 00:00:00 2001 From: jason Date: Tue, 5 Mar 2019 18:35:10 -0600 Subject: [PATCH] updated requirements to merakicommons 1.0.7 --- cassiopeia/data.py | 6 +++++- requirements-rtd.txt | 2 +- requirements.txt | 2 +- setup.py | 6 +++--- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/cassiopeia/data.py b/cassiopeia/data.py index cfc04c86..4bd25c7c 100644 --- a/cassiopeia/data.py +++ b/cassiopeia/data.py @@ -265,6 +265,8 @@ class Season(Enum): season_7 = "SEASON2017" preseason_8 = "PRESEASON2018" season_8 = "SEASON2018" + preseason_9 = "PRESEASON2019" + season_9 = "SEASON2019" @property def id(self): @@ -300,7 +302,9 @@ def end(self, region: Region) -> arrow.Arrow: Season.preseason_7: 8, Season.season_7: 9, Season.preseason_8: 10, - Season.season_8: 11 + Season.season_8: 11, + Season.preseason_9: 12, + Season.season_9: 13 } diff --git a/requirements-rtd.txt b/requirements-rtd.txt index 8ef21a72..e4c4f712 100644 --- a/requirements-rtd.txt +++ b/requirements-rtd.txt @@ -1,6 +1,6 @@ flake8 pytest -merakicommons>=1.0.6 +merakicommons>=1.0.7 datapipelines>=1.0.7 Pillow arrow diff --git a/requirements.txt b/requirements.txt index 85f9b582..017873e2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ flake8 pytest -merakicommons>=1.0.6 +merakicommons>=1.0.7 datapipelines>=1.0.7 Pillow arrow diff --git a/setup.py b/setup.py index 2079a78f..ec2a6003 100644 --- a/setup.py +++ b/setup.py @@ -6,8 +6,8 @@ install_requires = [ - "datapipelines>=1.0.6", - "merakicommons>=1.0.6", + "datapipelines>=1.0.7", + "merakicommons>=1.0.7", "Pillow", "arrow" ] @@ -18,7 +18,7 @@ setup( name="cassiopeia", - version="4.0.2", # Keep the Cass version at parity with the Riot API major version, use the minor version for breaking changes, and the patch version for everything else + version="4.0.3", # Keep the Cass version at parity with the Riot API major version, use the minor version for breaking changes, and the patch version for everything else author="Jason Maldonis; Rob Rua", author_email="team@merakianalytics.com", url="https://github.com/meraki-analytics/cassiopeia",