Browse Source

Add support for python 3.10 and 3.11 back

pull/441/head
Lukasz Taczuk 2 years ago
parent
commit
9c55f99939
  1. 2
      .github/workflows/testing_initiative.yml
  2. 3
      dev_requirements.txt
  3. 2
      setup.py

2
.github/workflows/testing_initiative.yml

@ -36,7 +36,7 @@ jobs:
- ubuntu-20.04
- macos-latest
- windows-latest
python-version: [2.7, 3.6, 3.7, 3.8, 3.9]
python-version: [2.7, 3.6, 3.7, 3.8, 3.9, "3.10", 3.11]
no-coverage: [0]
include:
- os: ubuntu-20.04

3
dev_requirements.txt

@ -1,7 +1,8 @@
-r requirements.txt
vcrpy==2.0.1
vcrpy==2.0.1; python_version <= '3.6'
vcrpy==4.3.0; python_version > '3.6'
PyYAML>=5.4
mock==1.3.0

2
setup.py

@ -54,6 +54,8 @@ setup(
'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 :: Implementation :: PyPy',
],
keywords='valve steam steamid api webapi steamcommunity',

Loading…
Cancel
Save