# HG changeset patch # User ymh # Date 1533139975 -7200 # Node ID 2403c49a6d6e786c57d4e83b2022635716228a52 # Parent 0b6bb04ec32b865bcd4f91abe32fe8de55274008 Take into account the new version of iconolab and increment version diff -r 0b6bb04ec32b -r 2403c49a6d6e src/iconolab_mcc/__init__.py --- a/src/iconolab_mcc/__init__.py Wed Jul 18 18:21:03 2018 +0200 +++ b/src/iconolab_mcc/__init__.py Wed Aug 01 18:12:55 2018 +0200 @@ -1,4 +1,4 @@ -VERSION = (0, 1, 34, "final", 0) +VERSION = (0, 1, 35, "final", 0) VERSION_STR = ".".join(map(lambda i:"%02d" % (i,), VERSION[:2])) diff -r 0b6bb04ec32b -r 2403c49a6d6e src/iconolab_mcc/management/commands/importimages.py --- a/src/iconolab_mcc/management/commands/importimages.py Wed Jul 18 18:21:03 2018 +0200 +++ b/src/iconolab_mcc/management/commands/importimages.py Wed Aug 01 18:12:55 2018 +0200 @@ -389,7 +389,7 @@ "joconde_ref" : item_joconde_ref } self.create_item_and_metadata( - natural_key, collection, new_metadata, item['SRC_IMG_FILES'], options, self.source_dir) + natural_key, collection, new_metadata, item['SRC_IMG_FILES'], options) print('# All done!') diff -r 0b6bb04ec32b -r 2403c49a6d6e src/setup.py --- a/src/setup.py Wed Jul 18 18:21:03 2018 +0200 +++ b/src/setup.py Wed Aug 01 18:12:55 2018 +0200 @@ -123,7 +123,7 @@ setup_requires=['setuptools_scm'], install_requires=[ "Django >= 2.0", - "iconolab == 0.1.6", + "iconolab == 0.1.8", "django-appconf", "django-comments-xtd", "django-contrib-comments",