diff --git a/CHANGES.md b/CHANGES.md index e6fcbbb..67569bf 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,14 @@ # Change notes +## 2.0.0 (in progress) + +This release brings breaking changes + +### steam.client + +- Importing `steam.client` no longer automatically patches `socket or `ssl` to + use gevent. + ## 1.0.0 This release brings breaking changes diff --git a/steam/client/__init__.py b/steam/client/__init__.py index 1a21d21..11706c2 100644 --- a/steam/client/__init__.py +++ b/steam/client/__init__.py @@ -8,11 +8,6 @@ Implementation of Steam client based on ``gevent`` Optional features are available as :mod:`.mixins`. This allows the client to remain light yet flexible. """ -import gevent -import gevent.monkey -gevent.monkey.patch_socket() -gevent.monkey.patch_ssl() - import os import json from random import random