Skip to content

Commit 001f614

Browse files
author
Matt George
committed
changes for better installation
1 parent 3ade44c commit 001f614

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

HISTORY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.7.5.1 (2010-03-18)
2+
* fixed the pyres_scheduler script
3+
* changed download link to remove v from version number
4+
15
## 0.7.5 (2010-03-18)
26
* added feature to retry jobs based on a class attribute
37

pyres/__init__.py

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

33
from redis import Redis
44
import pyres.json_parser as json

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
version='0.7.5'
3+
version='0.7.5.1'
44
setup(
55
name='pyres',
66
version=version,
@@ -11,10 +11,10 @@
1111
license='MIT',
1212
url='http://github.com/binarydud/pyres',
1313
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
14-
download_url='http://cloud.github.com/downloads/binarydud/pyres/pyres-v%s.tar.gz' % version,
14+
download_url='http://cloud.github.com/downloads/binarydud/pyres/pyres-%s.tar.gz' % version,
1515
include_package_data=True,
1616
package_data={'resweb': ['templates/*.mustache','media/*']},
17-
scripts=['scripts/pyres_worker', 'scripts/pyres_web'],
17+
scripts=['scripts/pyres_worker', 'scripts/pyres_web', 'scripts/pyres_scheduler'],
1818
install_requires=[
1919
'simplejson>=2.0.9',
2020
'itty>=0.6.2',

0 commit comments

Comments
 (0)