File tree 3 files changed +10
-4
lines changed
3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
1
# History
2
2
3
+ ## 2.0.1 (2024-10-25)
4
+
5
+ * Via ` python_requires ` specifies that cached_property is for Python version 3.8 or higher
6
+ * Officiall drop support for Python 2.6
7
+
3
8
## 2.0.0 (2024-10-25)
4
9
5
10
* Remove support for Python versions < 3.8
Original file line number Diff line number Diff line change 1
- __author__ = "Daniel Greenfeld"
2
- __email__ = "pydanny@gmail .com"
3
- __version__ = "2.0.0 "
1
+ __author__ = "Daniel Roy Greenfeld"
2
+ __email__ = "daniel@feldroy .com"
3
+ __version__ = "2.0.1 "
4
4
__license__ = "BSD"
5
5
6
6
from functools import wraps
Original file line number Diff line number Diff line change 9
9
except ImportError :
10
10
from distutils .core import setup
11
11
12
- __version__ = "2.0"
12
+ __version__ = "2.0.1 "
13
13
14
14
15
15
def read (fname ):
@@ -39,6 +39,7 @@ def read(fname):
39
39
description = "A decorator for caching properties in classes." ,
40
40
long_description = readme + "\n \n " + history ,
41
41
long_description_content_type = "text/markdown" ,
42
+ python_requires = ">=3.8" ,
42
43
author = "Daniel Roy Greenfeld" ,
43
44
44
45
url = "https://github.com/pydanny/cached-property" ,
You can’t perform that action at this time.
0 commit comments