This also updates the minimum dev requirement version for tox from 2.4.0 to 3.14.0 to support specifying Python 3.10 for tox
runs-on: ubuntu-latest
strategy:
matrix:
- python-version: [3.6, 3.7, 3.8, 3.9]
+ python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
pip install git+https://github.com/tweepy/tweepy.git
-Python 3.6 - 3.9 are supported.
+Python 3.6 - 3.10 are supported.
Links
-----
],
"dev": [
"coveralls>=2.1.0",
- "tox>=2.4.0",
+ "tox>=3.14.0",
],
"socks": ["requests[socks]>=2.11.1,<3"],
"test": tests_require,
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
+ "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
],
zip_safe=True,
# and then run "tox" from this directory.
[tox]
-envlist = py36, py37, py38, py39
+envlist = py36, py37, py38, py39, py310
[testenv]
commands = python -m unittest discover tests