File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3232 runs-on : ubuntu-latest
3333 steps :
3434 - uses : actions/checkout@v1
35- - name : Setup Python 3.5
36- uses : actions/setup-python@v1
37- with :
38- python-version : 3.5
3935 - name : Setup Python 3.6
4036 uses : actions/setup-python@v1
4137 with :
4440 uses : actions/setup-python@v1
4541 with :
4642 python-version : 3.7
43+ - name : Setup Python 3.8
44+ uses : actions/setup-python@v1
45+ with :
46+ python-version : 3.8
4747 - name : Install Dependencies
4848 run : pip install tox
4949 # runs unit tests for each python version
Original file line number Diff line number Diff line change @@ -52,9 +52,9 @@ def read(fname):
5252 "Natural Language :: English" ,
5353 "License :: OSI Approved :: Apache Software License" ,
5454 "Programming Language :: Python" ,
55- "Programming Language :: Python :: 3.5" ,
5655 "Programming Language :: Python :: 3.6" ,
5756 "Programming Language :: Python :: 3.7" ,
57+ "Programming Language :: Python :: 3.8" ,
5858 ],
5959 setup_requires = ["setuptools_scm" , "setuptools" ],
6060 install_requires = required_packages ,
Original file line number Diff line number Diff line change 11[tox]
2- envlist = py{35, 36,37}
2+ envlist = py{36,37,38 }
33
44skip_missing_interpreters = False
55ignore_basepython_conflict = True
You can’t perform that action at this time.
0 commit comments