Skip to content

Commit 4ad9ac3

Browse files
committed
Prepare for release v0.4.1
1 parent 42f115c commit 4ad9ac3

4 files changed

Lines changed: 6 additions & 3 deletions

File tree

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ matrix:
1111
env: TOXENV=py36
1212
- python: 3.6
1313
env: TOXENV=coverage,codecov
14+
- python: 3.7
15+
env: TOXENV=py37
1416

1517
install:
1618
- pip install tox

drucker/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
__project__ = 'drucker'
16-
__version__ = "0.4.0"
16+
__version__ = "0.4.1"
1717

1818
from .drucker_worker import Drucker
1919
from .drucker_worker_servicer import DruckerInput, DruckerOutput, DruckerWorkerServicer

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from setuptools import setup
1616

17-
VERSION = "0.4.0"
17+
VERSION = "0.4.1"
1818
PACKAGE_NAME = "drucker"
1919
DEVELOPMENT_STATUS = "3 - Alpha"
2020

@@ -71,5 +71,6 @@
7171
"Programming Language :: Python",
7272
"Programming Language :: Python :: 3",
7373
"Programming Language :: Python :: 3.6",
74+
"Programming Language :: Python :: 3.7",
7475
],
7576
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36
2+
envlist = py36, py37
33

44
[testenv]
55
passenv = TOXENV CI TRAVIS TRAVIS_*

0 commit comments

Comments
 (0)