Skip to content

Commit

Permalink
Re-add Python 3.4 and 3.5 definitions + change log for #610
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaoming authored and aleksihakli committed Jan 26, 2020
1 parent 8673a91 commit 69ca2dc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
Changelog
=========

12.6.1
======

* Deprecate explicit support for Python 3.4 and 3.5 in order to simplify the test matrix #610
* Add requirement for ``setuptools_scm`` to automatically resolve version from git tags #610
* Removed property ``thumbnail.__version__`` #610


12.6.0
======

Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def run(self):
url='https://github.com/jazzband/sorl-thumbnail',
packages=find_packages(exclude=['tests', 'tests.*']),
platforms='any',
python_requires='>=3.6',
python_requires='>=3.4',
zip_safe=False,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
Expand All @@ -31,6 +31,8 @@ def run(self):
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand Down

0 comments on commit 69ca2dc

Please sign in to comment.