Skip to content

Commit

Permalink
Specify 3.8 or higher
Browse files Browse the repository at this point in the history
  • Loading branch information
pydanny committed Oct 25, 2024
1 parent 2564e5e commit ac78c96
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# History

## 2.0.1 (2024-10-25)

* Via `python_requires` specifies that cached_property is for Python version 3.8 or higher
* Officiall drop support for Python 2.6

## 2.0.0 (2024-10-25)

* Remove support for Python versions < 3.8
Expand Down
6 changes: 3 additions & 3 deletions cached_property.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__author__ = "Daniel Greenfeld"
__email__ = "pydanny@gmail.com"
__version__ = "2.0.0"
__author__ = "Daniel Roy Greenfeld"
__email__ = "daniel@feldroy.com"
__version__ = "2.0.1"
__license__ = "BSD"

from functools import wraps
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
except ImportError:
from distutils.core import setup

__version__ = "2.0"
__version__ = "2.0.1"


def read(fname):
Expand Down Expand Up @@ -39,6 +39,7 @@ def read(fname):
description="A decorator for caching properties in classes.",
long_description=readme + "\n\n" + history,
long_description_content_type="text/markdown",
python_requires=">=3.8",
author="Daniel Roy Greenfeld",
author_email="daniel@feldroy.com",
url="https://github.com/pydanny/cached-property",
Expand Down

0 comments on commit ac78c96

Please sign in to comment.