Skip to content

Commit 5cc2a8e

Browse files
authored
Merge pull request #33 from FlipperPA/feature/2.3-release
Release branch for 2.3 release with support for Click 8.
2 parents 47aeb6c + 0d93fca commit 5cc2a8e

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

AUTHORS.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ Project contributors
33
====================
44

55
* Jonathan Stoppani <[email protected]>
6-
* Ulrich Petri <[email protected]>
76
* Timothy Allen (https://github.com/FlipperPA)
7+
* Ulrich Petri <[email protected]>
88
* Bastien Vallet (https://github.com/Djailla)
9-
9+
* Daniel Chiquito (https://github.com/dchiquito)
10+

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ Automated code metrics:
3434
``click`` command line library.
3535

3636
* Free software: MIT license
37-
* Documentation for the Click command line library: http://click.pocoo.org/7/
38-
* Compatible with Django 2.2 or 3.0 running on Python 3.6, 3.7, 3.8, and PyPy.
37+
* Documentation for the Click command line library: http://click.pocoo.org/8/
38+
* Compatible with Django 2.2, 3.1, or 3.2 running on Python 3.6, 3.7, 3.8, 3.9, and PyPy.
3939

4040

4141
Installation

djclick/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
# The RegEx in setup.py requires single quotes. Rather than change it, turn off Black.
1111
# fmt: off
12-
__version__ = '2.2.0'
12+
__version__ = '2.3.0'
1313
__url__ = 'https://github.com/GaretJax/django-click'
1414
__author__ = 'Jonathan Stoppani'
1515
__email__ = '[email protected]'

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"Programming Language :: Python :: 3.6",
2323
"Programming Language :: Python :: 3.7",
2424
"Programming Language :: Python :: 3.8",
25+
"Programming Language :: Python :: 3.9",
2526
]
2627

2728

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# By moving it out of the way (~500MB), we trim test execution time by > 80%.
55
toxworkdir = {homedir}/.toxenvs/django-click
66
envlist =
7-
dj{22,30,31},flake8
7+
dj{22,31,32},flake8
88

99
[testenv]
1010
usedevelop = true
@@ -15,8 +15,8 @@ setenv =
1515
deps =
1616
-rrequirements-test.txt
1717
dj22: django>=2.2,<2.3
18-
dj30: django>=3.0,<3.1
1918
dj31: django>=3.1,<3.2
19+
dj32: django>=3.2,<3.3
2020
commands = py.test -rxs --cov-report= --cov-append --cov djclick {posargs:djclick}
2121

2222

0 commit comments

Comments
 (0)