From df3101aaf39d3e938cb0ad4755e1dd5955aa7686 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Sat, 5 Aug 2017 10:57:00 +0800 Subject: [PATCH 1/2] add Python version 3.7-dev --- .travis.yml | 1 + README.md | 2 +- setup.py | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index b0ec3a61..3ab6479c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ python: - 3.4 - 3.5 - 3.6 + - 3.7-dev install: - pip install -r requirements_dev.txt script: diff --git a/README.md b/README.md index 90910477..b8e2957a 100644 --- a/README.md +++ b/README.md @@ -145,7 +145,7 @@ $ ate testcases_folder_path ## Supported Python Versions -Python `2.7`, `3.3`, `3.4`, `3.5`, and `3.6`. +Python `2.7`, `3.3`, `3.4`, `3.5`, `3.6` and `3.7-dev`. ## To learn more ... diff --git a/setup.py b/setup.py index 721d1f1b..bf7a4aea 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,8 @@ setup( 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6' + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7-dev' ], entry_points={ 'console_scripts': [ From 5b8c3903dfc66a071ebd440b13baaf0f07023059 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Sat, 5 Aug 2017 14:04:54 +0800 Subject: [PATCH 2/2] add version number for dependent PyUnitReport --- README.md | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b8e2957a..4f83dbdc 100644 --- a/README.md +++ b/README.md @@ -23,13 +23,13 @@ Take full reuse of Python's existing powerful libraries: [`Requests`][requests], ## Installation/Upgrade ```bash -$ pip install git+https://github.com/debugtalk/ApiTestEngine.git#egg=ApiTestEngine +$ pip install git+https://github.com/debugtalk/ApiTestEngine.git#egg=ApiTestEngine --process-dependency-links ``` To upgrade all specified packages to the newest available version, you should add the `-U` option. ```bash -$ pip install -U git+https://github.com/debugtalk/ApiTestEngine.git#egg=ApiTestEngine +$ pip install -U git+https://github.com/debugtalk/ApiTestEngine.git#egg=ApiTestEngine --process-dependency-links ``` If there is a problem with the installation or upgrade, you can check the [`FAQ`](docs/FAQ.md). diff --git a/setup.py b/setup.py index bf7a4aea..3516fe61 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ setup( "PyUnitReport" ], dependency_links=[ - "git+https://github.com/debugtalk/PyUnitReport.git#egg=PyUnitReport" + "git+https://github.com/debugtalk/PyUnitReport.git#egg=PyUnitReport-0" ], classifiers=[ "Development Status :: 3 - Alpha",