Skip to content

Commit

Permalink
Merge pull request #106 from harikitech/topic/fix_document
Browse files Browse the repository at this point in the history
Fix dependencies and document
  • Loading branch information
heavenshell authored Jun 29, 2020
2 parents eaacc5e + c783c38 commit de5c951
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ Your cache backend should look something like this::
'BACKEND': 'django_elastipymemcache.backend.ElastiPymemcache',
'LOCATION': '[configuration endpoint]:11211',
'OPTIONS': {
'cluster_timeout': 1, # its used when get cluster info
'ignore_exc': True, # pymemcache Client params
'ignore_cluster_errors': True, # ignore get cluster info error
}
Expand Down
2 changes: 1 addition & 1 deletion django_elastipymemcache/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION = (2, 0, 0)
VERSION = (2, 0, 1)
__version__ = '.'.join(map(str, VERSION))
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
packages=find_packages(exclude=('tests',)),
include_package_data=True,
install_requires=[
'pymemcache',
'django-pymemcache>=1.0',
'Django>=2.2',
],
)

0 comments on commit de5c951

Please sign in to comment.