Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.12.0
current_version = 0.12.1
commit = True
tag = True
message = Release: {current_version} -> {new_version}
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def load_reqs(filename):

setup(
name='etcd3',
version='0.12.0',
version='0.12.1',
description="Python client for the etcd3 API",
long_description=readme + '\n\n' + history,
author="Louis Taylor",
Expand Down Expand Up @@ -55,6 +55,9 @@ def load_reqs(filename):
'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',
'Programming Language :: Python :: 3.9',
],
test_suite='tests',
tests_require=test_requirements
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[tox]
envlist = py39, flake8
skipsdist=True
skips-dist=True

[testenv:flake8]
commands=flake8 {posargs}

[testenv]
passenv = ETCD_ENDPOINT TEST_ETCD_VERSION
pass_env = ETCD_ENDPOINT,TEST_ETCD_VERSION
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}/etcd3
deps=
Expand Down