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
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
sudo: false
language: python
python:
- "3.4"
- "3.3"
- "3.11"
- "3.10"
- "3.9"
- "2.7"
- "2.6"

addons:
apt:
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@ pytest==2.8.3
pep8==1.6.2
marshmallow>=2.15.1
beautifulsoup4==4.4.1
ordereddict==1.1
lxml==4.6.5
six==1.9.0
7 changes: 1 addition & 6 deletions xbrl/xbrl.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import re
from marshmallow import Schema, fields
import datetime
import collections
import collections as odict
import six
import logging

Expand All @@ -13,11 +13,6 @@
except ImportError:
from io import StringIO

if 'OrderedDict' in dir(collections):
odict = collections
else:
import ordereddict as odict


def soup_maker(fh):
""" Takes a file handler returns BeautifulSoup"""
Expand Down