Skip to content

Commit ee63578

Browse files
author
Jesse Myers
committed
Merge branch 'release/1.1'
2 parents 0e6e300 + db41d0b commit ee63578

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,5 @@ docs/_build/
5353
# PyBuilder
5454
target/
5555

56-
cover
56+
cover
57+
.eggs

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11

2+
Version 1.1:
3+
- Ensure that project name matches directory structure.
4+
- Better handling of container deletion errors.
5+
26
Version 1.0:
37
- Initial release

dockerrotate/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def clean_containers(client, args):
140140
try:
141141
client.remove_container(container["Id"])
142142
except APIError as error:
143-
print "Unable to remove container: {}: {}".format(
143+
print "Unable to remove container: {}: {}".format( # noqa
144144
container["Id"],
145145
error,
146146
)

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22

33
from setuptools import setup, find_packages
44

5-
__version__ = '1.0'
5+
__version__ = '1.1'
66

77
__build__ = ''
88

9-
setup(name='docker-rotate',
9+
setup(name='dockerrotate',
1010
version=__version__ + __build__,
1111
description='Docker image rotation tool',
1212
author='Location Labs',
1313
author_email='[email protected]',
1414
url='http://locationlabs.com',
1515
packages=find_packages(exclude=['*.tests']),
1616
setup_requires=[
17-
'nose>=1.0',
17+
'nose>=1.3.7',
1818
],
1919
install_requires=[
2020
'docker-py>=0.5.3',

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ commands =
66
python setup.py nosetests --with-coverage --cover-package=dockerrotate --cover-erase --cover-html
77
python setup.py sdist
88
deps =
9-
setuptools==3.6
10-
9+
setuptools>=17.1
1110

1211
[testenv:lint]
1312
commands=flake8 --max-line-length 99 dockerrotate

0 commit comments

Comments
 (0)