Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit b78578d

Browse files
committed
Update redis-py requirement. Bump version.
1 parent 792ee0a commit b78578d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ easier access to Redis sets, lists, and sorted sets.
1212

1313
Installation
1414
------------
15-
Redisco requires latest version of redis-py so get it first.
15+
Redisco requires redis-py 2.0.0 so get it first.
1616

17-
pip install git+https://github.com/andymccurdy/redis-py.git@master#egg=redis-py
17+
pip install redis
1818

1919
Then install redisco.
2020

21-
pip install git+https://github.com/iamteem/redisco.git@master#egg=redisco
21+
pip install redisco
2222

2323

2424
Models
@@ -282,7 +282,7 @@ interact with the key-value storage. By default, it connects
282282
to localhost:6379, selecting db 0. If you wish to specify settings:
283283

284284
::
285-
285+
286286
import redisco
287287
redisco.connection_setup(host='localhost', port=6380, db=10)
288288

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
import os
33

4-
version = '0.1.dev22'
4+
version = '0.1.0'
55

66
try:
77
from setuptools import setup
@@ -26,7 +26,7 @@ def read(fname):
2626
packages=['redisco', 'redisco.models'],
2727
test_suite='tests.all_tests',
2828
classifiers=[
29-
'Development Status :: 3 - Alpha',
29+
'Development Status :: 4 - Beta',
3030
'Environment :: Console',
3131
'Intended Audience :: Developers',
3232
'License :: OSI Approved :: MIT License',

0 commit comments

Comments
 (0)