Skip to content

Commit 6146e3d

Browse files
committed
Deprecating py 3.6 support
1 parent b0a70d3 commit 6146e3d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
- DeepSearch: Search for objects within other objects.
1313
- DeepHash: Hash any object based on their content.
1414

15-
Tested on Python 3.6+ and PyPy3.
15+
Tested on Python 3.7+ and PyPy3.
1616

1717
- **[Documentation](https://zepworks.com/deepdiff/6.1.0/)**
1818

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def get_reqs(filename):
2828

2929
setup(name='deepdiff',
3030
version=version,
31-
description='Deep Difference and Search of any Python object/data.',
31+
description='Deep Difference and Search of any Python object/data. Recreate objects by adding adding deltas to each other.',
3232
url='https://github.com/seperman/deepdiff',
3333
download_url='https://github.com/seperman/deepdiff/tarball/master',
3434
author='Seperman',
@@ -42,15 +42,14 @@ def get_reqs(filename):
4242
long_description=long_description,
4343
long_description_content_type='text/markdown',
4444
install_requires=reqs,
45-
python_requires='>=3.6',
45+
python_requires='>=3.7',
4646
extras_require={
4747
"cli": cli_reqs,
4848
},
4949
classifiers=[
5050
"Intended Audience :: Developers",
5151
"Operating System :: OS Independent",
5252
"Topic :: Software Development",
53-
"Programming Language :: Python :: 3.6",
5453
"Programming Language :: Python :: 3.7",
5554
"Programming Language :: Python :: 3.8",
5655
"Programming Language :: Python :: 3.9",

0 commit comments

Comments
 (0)