Skip to content

Commit

Permalink
5.1.13 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mbi committed Oct 16, 2020
1 parent 395ac29 commit 21cd31a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Version History
===============

Version 0.5.13 (Unreleased)
---------------------------
Version 0.5.13
--------------
* Fix DeprecationWarnings on Django 3 related to unicode (#173, thanks @jannh)
* Applied black to the codebase and ignored W503
* tox: remove superfluous basepython statement (#172, thanks @devkral)
Expand Down
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
from setuptools import setup, find_packages
from setuptools.command.test import test as test_command
from captcha import get_version as get_captcha_version
import sys

from captcha import get_version as get_captcha_version
from setuptools import find_packages, setup
from setuptools.command.test import test as test_command


class Tox(test_command):
user_options = [("tox-args=", "a", "Arguments to pass to tox")]
Expand Down Expand Up @@ -30,7 +31,7 @@ def run_tests(self):

install_requires = [
"six >=1.2.0",
"Django >= 1.8",
"Django >= 2.2",
"Pillow >=6.2.0",
"django-ranged-response == 0.2.0",
]
Expand All @@ -57,10 +58,9 @@ def run_tests(self):
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"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",
"Topic :: Security",
"Topic :: Internet :: WWW/HTTP",
"Framework :: Django",
Expand Down

0 comments on commit 21cd31a

Please sign in to comment.