Skip to content

Commit

Permalink
Update for 0.61.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Noctem committed Apr 8, 2017
1 parent 3b7ad2e commit e1a41f7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion aiopogo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import logging

__title__ = 'aiopogo'
__version__ = '1.6.1'
__version__ = '1.6.2'
__author__ = 'David Christenson'
__license__ = 'MIT License'
__copyright__ = 'Copyright (c) 2017 David Christenson <https://github.com/Noctem>'
Expand Down
2 changes: 1 addition & 1 deletion aiopogo/hash_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@


class HashServer:
endpoint = "http://pokehash.buddyauth.com/api/v129_1/hash"
endpoint = "http://pokehash.buddyauth.com/api/v131_0/hash"
_session = None
multi = False
loop = get_event_loop()
Expand Down
2 changes: 1 addition & 1 deletion aiopogo/rpc_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ async def _build_main_request(self, subrequests, player_position=None):
sen.gravity_z = rand.triangular(-1, 1, -.4)
sen.status = 3

sig.version_hash = -3226782243204485589
sig.version_hash = 1296456256998993698

try:
for key in self.device_info:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ protobuf>=3.0.0
gpsoauth>=0.4.0
protobuf3-to-dict>=0.1.4
aiohttp==1.3.*
pycrypt>=0.2.0
pycrypt>=0.5.0
pogeo>=0.2.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
author='David Christenson',
author_email='[email protected]',
description='Asynchronous Pokemon API lib',
version='1.6.1',
version='1.6.2',
url='https://github.com/Noctem/aiopogo',
packages=find_packages(),
install_requires=[
'protobuf>=3.0.0',
'gpsoauth>=0.4.0',
'protobuf3-to-dict>=0.1.4',
'aiohttp==1.3.*',
'pycrypt>=0.2.0',
'pycrypt>=0.5.0',
'pogeo>=0.2.0'],
extras_require={'ujson': ['ujson']},
classifiers=[
Expand Down

0 comments on commit e1a41f7

Please sign in to comment.