From 181b16da5c27a2bca13c3b2e468a7bb43a769b0d Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sun, 3 Sep 2017 07:37:30 +0100 Subject: [PATCH] bump to v0.8.21 --- steam/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/steam/__init__.py b/steam/__init__.py index cb5c7ec..bdc92f4 100644 --- a/steam/__init__.py +++ b/steam/__init__.py @@ -1,7 +1,7 @@ -__version__ = "0.8.20" +__version__ = "0.8.21" __author__ = "Rossen Georgiev" -version_info = (0, 8, 20) +version_info = tuple(map(int, __version__.split('.'))) from steam.steamid import SteamID from steam.globalid import GlobalID @@ -11,6 +11,7 @@ from steam.webauth import WebAuth, MobileWebAuth # proxy object # avoids importing steam.enums.emsg unless it's needed +# avoids gevent monkey patching class SteamClient(object): def __new__(cls, *args, **kwargs): from steam.client import SteamClient as SC