From d9ef20b0e3452034824e8f63faf9638a68bb695a Mon Sep 17 00:00:00 2001 From: Jay Hutchinson Date: Tue, 17 Mar 2015 12:39:52 -0500 Subject: Version 1.0.7 --- README.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.txt b/README.txt index 48a655c..0e06be8 100644 --- a/README.txt +++ b/README.txt @@ -8,7 +8,7 @@ A least recently used (LRU) cache for Python. Introduction ============ -Pylru implements a true LRU cache along with several support classes. The cache is efficient and written in pure Python. It works with Python 2.6+ including the new 3.x series. Basic operations (lookup, insert, delete) all run in a constant amount of time. +Pylru implements a true LRU cache along with several support classes. The cache is efficient and written in pure Python. It works with Python 2.6+ including the 3.x series. Basic operations (lookup, insert, delete) all run in a constant amount of time. You can install pylru or you can just copy the source file pylru.py and use it in your own project. The rest of this file explains what the pylru module provides and how to use it. If you want to know more examine pylru.py. The code is straightforward and well commented. diff --git a/setup.py b/setup.py index 5c99196..7ccf204 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup setup( name = "pylru", - version = "1.0.6", + version = "1.0.7", py_modules=['pylru'], description = "A least recently used (LRU) cache implementation", author = "Jay Hutchinson", -- cgit v1.2.1