close #268
@ -6,7 +6,7 @@ filter:
tools:
external_code_coverage:
timeout: 300
runs: 6
runs: 5
build:
nodes:
@ -10,7 +10,6 @@ jobs:
after_script: []
# linux
- python: 2.7
- python: 3.4
- python: 3.5
- python: 3.6
- python: 3.7
@ -1,6 +1,6 @@
six>=1.10.0
pycryptodomex>=3.7.0
requests>=2.9.1,<2.22.0
requests>=2.9.1
vdf>=3.3
gevent>=1.3.0
protobuf>=3.0.0
@ -17,7 +17,7 @@ with open(path.join(here, 'steam/__init__.py'), encoding='utf-8') as f:
install_requires = [
'six>=1.10',
'pycryptodomex>=3.7.0',
'requests>=2.9.1,<2.22.0',
'requests>=2.9.1',
'vdf>=3.3',
'cachetools>=3.0.0',
]
@ -49,7 +49,6 @@ setup(
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
@ -318,11 +318,11 @@ class steamid_functions(unittest.TestCase):
def test_steam64_from_url(self):
def scrub_req(r):
r.headers.pop('Cookie', None)
r.headers.pop('date', None)
r.headers.pop('Date', None)
return r
def scrub_resp(r):
r['headers'].pop('set-cookie', None)
r['headers'].pop('date', None)
r['headers'].pop('Set-Cookie', None)
r['headers'].pop('Date', None)
with vcr.use_cassette('vcr/steamid_community_urls.yaml',