forked from ValvePython/steam
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Drop support for Python 3.6 (vcrpy needs >=4.3.0 for Py 3.11, so we…
… can't support both) - Run `pyupgrade` again, this time with 3.7+ - Make sure setup.py install_requires matches requirements.txt
- Loading branch information
1 parent
5e16160
commit 29c5cbc
Showing
12 changed files
with
27 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
pycryptodomex>=3.7.0 | ||
requests>=2.9.1 | ||
urllib3<2 | ||
vdf @ git+https://github.com/solsticegamestudios/vdf | ||
urllib3<2 # See https://github.com/kevin1024/vcrpy/pull/699#issuecomment-1551439663 | ||
vdf @ git+https://github.com/solsticegamestudios/[email protected] | ||
cachetools>=3.0.0 | ||
|
||
gevent>=1.3.0 | ||
protobuf~=3.0 | ||
gevent-eventemitter~=2.1 | ||
cachetools>=3.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,8 @@ | |
install_requires = [ | ||
'pycryptodomex>=3.7.0', | ||
'requests>=2.9.1', | ||
'urllib3<2', | ||
'vdf>=3.3', | ||
'urllib3<2', # See https://github.com/kevin1024/vcrpy/pull/699#issuecomment-1551439663 | ||
'vdf @ git+https://github.com/solsticegamestudios/[email protected]', | ||
'cachetools>=3.0.0', | ||
] | ||
|
||
|
@@ -38,20 +38,19 @@ | |
author="Rossen Georgiev / Solstice Game Studios", | ||
author_email='[email protected]', | ||
license='MIT', | ||
python_requires=">=3.6", | ||
python_requires=">=3.7", | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Natural Language :: English', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
#'Programming Language :: Python :: 3.12', # TODO: Needs vcrpy>=6.0.0 | ||
'Programming Language :: Python :: Implementation :: PyPy', | ||
], | ||
keywords='valve steam steamid api webapi steamcommunity', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters