Skip to content

Commit de5c951

Browse files
authored
Merge pull request #106 from harikitech/topic/fix_document
Fix dependencies and document
2 parents eaacc5e + c783c38 commit de5c951

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

README.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ Your cache backend should look something like this::
4141
'BACKEND': 'django_elastipymemcache.backend.ElastiPymemcache',
4242
'LOCATION': '[configuration endpoint]:11211',
4343
'OPTIONS': {
44-
'cluster_timeout': 1, # its used when get cluster info
4544
'ignore_exc': True, # pymemcache Client params
4645
'ignore_cluster_errors': True, # ignore get cluster info error
4746
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
VERSION = (2, 0, 0)
1+
VERSION = (2, 0, 1)
22
__version__ = '.'.join(map(str, VERSION))

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
packages=find_packages(exclude=('tests',)),
3636
include_package_data=True,
3737
install_requires=[
38-
'pymemcache',
38+
'django-pymemcache>=1.0',
3939
'Django>=2.2',
4040
],
4141
)

0 commit comments

Comments
 (0)