24 lines
638 B
Text
24 lines
638 B
Text
use security/py-cryptodome
|
|
don't limit protobuf version to 3
|
|
|
|
Index: setup.py
|
|
--- setup.py.orig
|
|
+++ setup.py
|
|
@@ -15,7 +15,7 @@ with open(path.join(here, 'steam/__init__.py'), encodi
|
|
|
|
install_requires = [
|
|
'six>=1.10',
|
|
- 'pycryptodomex>=3.7.0',
|
|
+ 'pycryptodome>=3.7.0',
|
|
'requests>=2.9.1',
|
|
'vdf>=3.3',
|
|
'cachetools>=3.0.0',
|
|
@@ -26,7 +26,7 @@ install_requires = [
|
|
install_extras = {
|
|
'client': [
|
|
'gevent>=1.3.0',
|
|
- 'protobuf~=3.0; python_version >= "3"',
|
|
+ 'protobuf; python_version >= "3"',
|
|
'protobuf<3.18.0; python_version < "3"',
|
|
'gevent-eventemitter~=2.1',
|
|
],
|