From 4ad9ac345f6096700e27b7253364cb99a03432c5 Mon Sep 17 00:00:00 2001 From: Hattori Keigo Date: Mon, 19 Nov 2018 16:34:41 +0900 Subject: [PATCH 1/2] Prepare for release v0.4.1 --- .travis.yml | 2 ++ drucker/__init__.py | 2 +- setup.py | 3 ++- tox.ini | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index edf946d..39fc387 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,8 @@ matrix: env: TOXENV=py36 - python: 3.6 env: TOXENV=coverage,codecov + - python: 3.7 + env: TOXENV=py37 install: - pip install tox diff --git a/drucker/__init__.py b/drucker/__init__.py index 1959f27..7df0755 100644 --- a/drucker/__init__.py +++ b/drucker/__init__.py @@ -13,7 +13,7 @@ # limitations under the License. __project__ = 'drucker' -__version__ = "0.4.0" +__version__ = "0.4.1" from .drucker_worker import Drucker from .drucker_worker_servicer import DruckerInput, DruckerOutput, DruckerWorkerServicer diff --git a/setup.py b/setup.py index 343b64e..13dbb53 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ from setuptools import setup -VERSION = "0.4.0" +VERSION = "0.4.1" PACKAGE_NAME = "drucker" DEVELOPMENT_STATUS = "3 - Alpha" @@ -71,5 +71,6 @@ "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", ], ) diff --git a/tox.ini b/tox.ini index 07794e7..8327531 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py36 +envlist = py36, py37 [testenv] passenv = TOXENV CI TRAVIS TRAVIS_* From 764119a0c48b1a63cdf1786b22ab746df20f44b8 Mon Sep 17 00:00:00 2001 From: Hattori Keigo Date: Mon, 19 Nov 2018 16:39:39 +0900 Subject: [PATCH 2/2] Remove `python 3.7 test` since Travis doesn't support it. --- .travis.yml | 2 -- setup.py | 1 - tox.ini | 2 +- 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 39fc387..edf946d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,8 +11,6 @@ matrix: env: TOXENV=py36 - python: 3.6 env: TOXENV=coverage,codecov - - python: 3.7 - env: TOXENV=py37 install: - pip install tox diff --git a/setup.py b/setup.py index 13dbb53..49eae91 100644 --- a/setup.py +++ b/setup.py @@ -71,6 +71,5 @@ "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", ], ) diff --git a/tox.ini b/tox.ini index 8327531..07794e7 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py36, py37 +envlist = py36 [testenv] passenv = TOXENV CI TRAVIS TRAVIS_*