Skip to content

Commit 2373276

Browse files
committed
Update test and tracking info
1 parent 57bacde commit 2373276

File tree

2 files changed

+12
-15
lines changed

2 files changed

+12
-15
lines changed

setup.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,16 @@
4242
zip_safe=False,
4343
keywords='django-taggit-labels',
4444
classifiers=[
45-
'Development Status :: 3 - Alpha',
4645
'Framework :: Django',
4746
'Intended Audience :: Developers',
4847
'License :: OSI Approved :: BSD License',
4948
'Natural Language :: English',
50-
'Programming Language :: Python :: 2',
51-
'Programming Language :: Python :: 2.6',
52-
'Programming Language :: Python :: 2.7',
5349
'Programming Language :: Python :: 3',
54-
'Programming Language :: Python :: 3.3',
50+
'Programming Language :: Python :: 3.6',
51+
'Programming Language :: Python :: 3.7',
52+
'Programming Language :: Python :: 3.8',
53+
'Programming Language :: Python :: 3.9',
54+
'Programming Language :: Python :: 3.10',
55+
'Development Status :: 5 - Production/Stable',
5556
],
5657
)

tox.ini

+6-10
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,23 @@
11
[tox]
22
envlist =
3-
py37-django22
4-
py36-django22
5-
py37-django111
6-
py36-django111
7-
py35-django111
8-
py27-django111
3+
py{36,37,38,39,310}-django{32}
4+
py{35,36,37,38,39}-django{22}
95
flake8
106

117
[testenv]
128
setenv =
139
PYTHONPATH = {toxinidir}:{toxinidir}/taggit_labels
1410
commands = py.test {posargs}
1511
basepython =
12+
py310: python3.10
13+
py39: python3.9
14+
py38: python3.8
1615
py37: python3.7
17-
py36: python3.6
18-
py35: python3.5
19-
py27: python2.7
2016
pypy: pypy
2117
pypy3: pypy3
2218
deps =
23-
django111: Django~=1.11.0
2419
django22: Django~=2.2
20+
django32: Django~=3.2
2521
-r{toxinidir}/requirements-test.txt
2622

2723
[testenv:flake8]

0 commit comments

Comments
 (0)