Skip to content

Commit a61b3d3

Browse files
committed
#163 Allowing more recent versions of beautifulsoup4
beautifulsoup4 was upgraded from 4.4.X to 4.5.X in e68fab5 without further comment but did require some code change. For that reason, I'm specifying 4.5 as the minimum allowed version of beautifulsoup4. However, I'm opening up more recent versions to make pyiso development more convenient for contributors.
1 parent a5cdb0c commit a61b3d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
beautifulsoup4==4.5.0
1+
beautifulsoup4>=4.5.0
22
celery>=3.1
33
certifi
44
freezegun

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def find_version(*file_paths):
6464
],
6565
test_suite='nose.collector',
6666
install_requires=[
67-
'beautifulsoup4==4.5.0',
67+
'beautifulsoup4>=4.5.0',
6868
'pandas>=0.18,<0.21',
6969
'python-dateutil',
7070
'pytz',

0 commit comments

Comments
 (0)