提交 b2c40e89 编写于 作者: N nicolargo

x

Merge branch 'develop' of github.com:nicolargo/glances into develop
......@@ -25,7 +25,7 @@ from concurrent.futures import ThreadPoolExecutor
BASE_URL = 'https://ci.appveyor.com/api'
PY_VERSIONS = ['2.7', '3.4', '3.5', '3.6']
PY_VERSIONS = ['2.7', '3.4', '3.5', '3.6', '3.7', '3.8']
def term_supports_colors(file=sys.stdout):
......
language: python
cache: pip
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
- pypy
- '2.7'
- '3.4'
- '3.5'
- '3.6'
- '3.7'
- '3.8'
- pypy3
install:
- pip install -r requirements.txt
- pip install coveralls
- pip install -r requirements.txt
- pip install coveralls
script:
- pip install .
- coverage run --source=glances unitest.py
- pip install .
- coverage run --source=glances unitest.py
after_success:
- coveralls
- coveralls
deploy:
provider: pypi
user: nicolargo
......
......@@ -20,6 +20,14 @@ environment:
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python37"
PYTHON_VERSION: "3.7.x"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python38"
PYTHON_VERSION: "3.8.x"
PYTHON_ARCH: "32"
# 64 bits
- PYTHON: "C:\\Python27-x64"
......@@ -40,6 +48,20 @@ environment:
VS_VER: "2015"
INSTANCENAME: "SQL2012SP1"
- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.x"
PYTHON_ARCH: "64"
ARCH: x86_64
VS_VER: "2015"
INSTANCENAME: "SQL2012SP1"
- PYTHON: "C:\\Python38-x64"
PYTHON_VERSION: "3.8.x"
PYTHON_ARCH: "64"
ARCH: x86_64
VS_VER: "2015"
INSTANCENAME: "SQL2012SP1"
# Also build on a Python version not pre-installed by Appveyor.
# See: https://github.com/ogrisel/python-appveyor-demo/issues/10
......
......@@ -133,6 +133,8 @@ setup(
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: System :: Monitoring'
]
)
......@@ -5,7 +5,7 @@
# tox
[tox]
envlist = py27, py36
envlist = py27, py38
[testenv]
deps =
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册