Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Specify py3.8 or higher / Officially drop py2.7 #357

Merged
merged 1 commit into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading