Skip to content

Commit

Permalink
incremented version for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
jjmaldonis committed Sep 5, 2018
1 parent c9936b3 commit db276ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions examples/match_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def collect_matches():
region = "EUW"

summoner = Summoner(name=initial_summoner_name, region=region)
patch_720 = Patch.from_str("7.20", region=region)
patch = Patch.from_str("8.9", region=region)

unpulled_summoner_ids = SortedList([summoner.id])
pulled_summoner_ids = SortedList()
Expand All @@ -31,7 +31,7 @@ def collect_matches():
# Get a random summoner from our list of unpulled summoners and pull their match history
new_summoner_id = random.choice(unpulled_summoner_ids)
new_summoner = Summoner(id=new_summoner_id, region=region)
matches = filter_match_history(new_summoner, patch_720)
matches = filter_match_history(new_summoner, patch)
unpulled_match_ids.update([match.id for match in matches])
unpulled_summoner_ids.remove(new_summoner_id)
pulled_summoner_ids.add(new_summoner_id)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setup(
name="cassiopeia",
version="3.0.19",
version="3.0.20",
author="Jason Maldonis; Rob Rua",
author_email="team@merakianalytics.com",
url="https://github.com/meraki-analytics/cassiopeia",
Expand Down

0 comments on commit db276ba

Please sign in to comment.