Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ python:
- "2.7"
- "3.4"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
install:
- "pip install ."
script: nosetests
Expand Down
3 changes: 2 additions & 1 deletion pylinkvalidator/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"""
from __future__ import unicode_literals, absolute_import

from collections import namedtuple, Mapping, defaultdict
from collections import namedtuple, defaultdict
from collections.abc import Mapping
from optparse import OptionParser, OptionGroup
import re

Expand Down
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
version = __import__('pylinkvalidator').__version__

if sys.version_info[0] >= 3:
requires = ['beautifulsoup4>=4.2.0']
requires = [
'beautifulsoup4>=4.2.0',
'junit-xml>=1.8'
]
else:
requires = []

Expand Down Expand Up @@ -45,6 +48,10 @@
'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',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet :: WWW/HTTP :: Site Management :: Link Checking',
'Topic :: Utilities',
],
Expand Down