Browse Source

drop py3.4 support

close #268
pull/287/head
Rossen Georgiev 5 years ago
parent
commit
e1ea9d2494
  1. 2
      .scrutinizer.yml
  2. 1
      .travis.yml
  3. 2
      requirements.txt
  4. 3
      setup.py
  5. 6
      tests/test_steamid.py
  6. 3040
      vcr/steamid_community_urls.yaml

2
.scrutinizer.yml

@ -6,7 +6,7 @@ filter:
tools: tools:
external_code_coverage: external_code_coverage:
timeout: 300 timeout: 300
runs: 6 runs: 5
build: build:
nodes: nodes:

1
.travis.yml

@ -10,7 +10,6 @@ jobs:
after_script: [] after_script: []
# linux # linux
- python: 2.7 - python: 2.7
- python: 3.4
- python: 3.5 - python: 3.5
- python: 3.6 - python: 3.6
- python: 3.7 - python: 3.7

2
requirements.txt

@ -1,6 +1,6 @@
six>=1.10.0 six>=1.10.0
pycryptodomex>=3.7.0 pycryptodomex>=3.7.0
requests>=2.9.1,<2.22.0 requests>=2.9.1
vdf>=3.3 vdf>=3.3
gevent>=1.3.0 gevent>=1.3.0
protobuf>=3.0.0 protobuf>=3.0.0

3
setup.py

@ -17,7 +17,7 @@ with open(path.join(here, 'steam/__init__.py'), encoding='utf-8') as f:
install_requires = [ install_requires = [
'six>=1.10', 'six>=1.10',
'pycryptodomex>=3.7.0', 'pycryptodomex>=3.7.0',
'requests>=2.9.1,<2.22.0', 'requests>=2.9.1',
'vdf>=3.3', 'vdf>=3.3',
'cachetools>=3.0.0', 'cachetools>=3.0.0',
] ]
@ -49,7 +49,6 @@ setup(
'License :: OSI Approved :: MIT License', 'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',

6
tests/test_steamid.py

@ -318,11 +318,11 @@ class steamid_functions(unittest.TestCase):
def test_steam64_from_url(self): def test_steam64_from_url(self):
def scrub_req(r): def scrub_req(r):
r.headers.pop('Cookie', None) r.headers.pop('Cookie', None)
r.headers.pop('date', None) r.headers.pop('Date', None)
return r return r
def scrub_resp(r): def scrub_resp(r):
r['headers'].pop('set-cookie', None) r['headers'].pop('Set-Cookie', None)
r['headers'].pop('date', None) r['headers'].pop('Date', None)
return r return r
with vcr.use_cassette('vcr/steamid_community_urls.yaml', with vcr.use_cassette('vcr/steamid_community_urls.yaml',

3040
vcr/steamid_community_urls.yaml

File diff suppressed because it is too large
Loading…
Cancel
Save