Skip to content

Commit

Permalink
Incorporate fix from #33 (commit e745f98). Remove platform supplied m…
Browse files Browse the repository at this point in the history
…odules from 'requires' parameter of setup.py. Bump micro version.
  • Loading branch information
mikedarcy committed Mar 12, 2019
1 parent aac1b3d commit 7b07a08
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 15 deletions.
2 changes: 1 addition & 1 deletion bdbag/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from distutils.util import strtobool
from pkg_resources import get_distribution, DistributionNotFound

__version__ = "1.5.3"
__version__ = "1.5.4"
__bagit_version__ = "1.7.0"

if sys.version_info > (3,): # pragma: no cover
Expand Down
2 changes: 1 addition & 1 deletion bdbag/bdbag_ro.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def add_annotation(obj, about, uri=None, content=None, motivatedBy=None, update_
if motivatedBy:
annotation['oa:motivatedBy'] = motivatedBy

exists = false
exists = False
if update_existing:
for i, item in enumerate(annotations):
if annotation['about'] == item["about"]:
Expand Down
13 changes: 0 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,19 +53,6 @@
]
},
requires=[
'argparse',
'os',
'sys',
'platform',
'logging',
'time',
'datetime',
'json',
'shutil',
'tempfile',
'tarfile',
'zipfile',
'urlparse',
'pytz',
'tzlocal',
'requests',
Expand Down

0 comments on commit 7b07a08

Please sign in to comment.