Skip to content

Commit 0f4155a

Browse files
author
Matt George
committed
removed camel casing and fixed error with failure packge
1 parent d47d76e commit 0f4155a

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

HISTORY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.4.1 (2010-01-06)
2+
3+
* fixed issue with new failure package in distutils sdist
4+
* changed setup.py to remove camel case, because it's ugly
5+
16
## 0.4.0 (2010-01-06)
27

38
* added the basics of failure backend support

pyres/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.4.0'
1+
__version__ = '0.4.1'
22

33
from redis import Redis
44
import simplejson

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
from distutils.core import setup
22

33
setup(
4-
name='PyRes',
5-
version='0.4.0',
4+
name='pyres',
5+
version='0.4.1',
66
description='Python Resque clone',
77
author='Matt George',
88
license='MIT',
99
author_email='[email protected]',
1010
url='http://github.com/binarydud/pyres',
11-
packages=['pyres', 'resweb'],
11+
packages=['pyres', 'resweb', 'pyres/failure'],
1212
package_data={'resweb': ['templates/*.mustache','media/*']},
1313
scripts=['scripts/pyres_worker', 'scripts/pyres_web'],
1414
zip_safe = True,

0 commit comments

Comments
 (0)