Skip to content

Commit

Permalink
CI: delete py27/py34/py35, add py38 (#360)
Browse files Browse the repository at this point in the history
  • Loading branch information
yong-huang authored Mar 3, 2022
1 parent 2a66963 commit aeda20a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 13 deletions.
6 changes: 1 addition & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- pip install codecov
- pip install -r requirements.txt
Expand All @@ -16,6 +14,4 @@ after_success:
- codecov
notifications:
email:
- ryan.liang@dell.com
- yong.huang@dell.com
- dong.ding@dell.com
11 changes: 4 additions & 7 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,17 @@ environment:
# The list here is complete (excluding Python 2.6, which
# isn't covered by this document) at the time of writing.
- TOXENV: "pep8"
PYTHON: "C:\\Python27-x64"
DISTUTILS_USE_SDK: "1"
- TOXENV: "py27"
PYTHON: "C:\\Python27-x64"
DISTUTILS_USE_SDK: "1"
- TOXENV: "py35"
PYTHON: "C:\\Python35-x64"
PYTHON: "C:\\Python37-x64"
DISTUTILS_USE_SDK: "1"
- TOXENV: "py36"
PYTHON: "C:\\Python36-x64"
DISTUTILS_USE_SDK: "1"
- TOXENV: "py37"
PYTHON: "C:\\Python37-x64"
DISTUTILS_USE_SDK: "1"
- TOXENV: "py38"
PYTHON: "C:\\Python38-x64"
DISTUTILS_USE_SDK: "1"

install:
# We need wheel installed to build wheels
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ def get_long_description():
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Natural Language :: English',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py34,py35,py36,py37,pep8
envlist = py27,py3{6,7,8,9,10},pep8


[testenv]
Expand Down

0 comments on commit aeda20a

Please sign in to comment.