Skip to content

Commit c032196

Browse files
authored
Merge pull request #357 from pydanny/specify-3.8-or-higher
Specify py3.8 or higher / Officially drop py2.7
2 parents 8cf960d + ac78c96 commit c032196

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

HISTORY.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# History
22

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+
38
## 2.0.0 (2024-10-25)
49

510
* Remove support for Python versions < 3.8

cached_property.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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"
44
__license__ = "BSD"
55

66
from functools import wraps

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
except ImportError:
1010
from distutils.core import setup
1111

12-
__version__ = "2.0"
12+
__version__ = "2.0.1"
1313

1414

1515
def read(fname):
@@ -39,6 +39,7 @@ def read(fname):
3939
description="A decorator for caching properties in classes.",
4040
long_description=readme + "\n\n" + history,
4141
long_description_content_type="text/markdown",
42+
python_requires=">=3.8",
4243
author="Daniel Roy Greenfeld",
4344
author_email="[email protected]",
4445
url="https://github.com/pydanny/cached-property",

0 commit comments

Comments
 (0)