PMXBOT Log file Viewer

Help | Karma | Search:

#pil logs for Monday the 19th of September, 2016

(Back to #pil overview) (Back to channel listing) (Animate logs)
[05:28:27] <travis-ci> hugovk/Pillow#1007 (standard_b64decode - 3da7ee6 : hugovk): The build passed.
[05:28:28] <travis-ci> Change view : https://github.com/hugovk/Pillow/commit/3da7ee6ef211
[05:28:28] <travis-ci> Build details : https://travis-ci.org/hugovk/Pillow/builds/160945046
[05:35:26] <travis-ci> hugovk/Pillow#1008 (b64decode - 40c6825 : hugovk): The build passed.
[05:35:26] <travis-ci> Change view : https://github.com/hugovk/Pillow/commit/40c6825fb19d
[05:35:26] <travis-ci> Build details : https://travis-ci.org/hugovk/Pillow/builds/160945730
[05:37:32] <travis-ci> hugovk/Pillow#1008 (b64decode - 40c6825 : hugovk): The build passed.
[05:37:32] <travis-ci> Change view : https://github.com/hugovk/Pillow/commit/40c6825fb19d
[05:37:32] <travis-ci> Build details : https://travis-ci.org/hugovk/Pillow/builds/160945730
[07:49:21] <travis-ci> anntzer/Pillow#23 (save-tiff-resolution-when-originally-missing-entry - 7e9c944 : Antony Lee): The build passed.
[07:49:22] <travis-ci> Change view : https://github.com/anntzer/Pillow/compare/e67cc7948b77...7e9c944cafa3
[07:49:22] <travis-ci> Build details : https://travis-ci.org/anntzer/Pillow/builds/160960527
[07:51:58] <travis-ci> anntzer/Pillow#23 (save-tiff-resolution-when-originally-missing-entry - 7e9c944 : Antony Lee): The build passed.
[07:51:58] <travis-ci> Change view : https://github.com/anntzer/Pillow/compare/e67cc7948b77...7e9c944cafa3
[07:51:59] <travis-ci> Build details : https://travis-ci.org/anntzer/Pillow/builds/160960527
[09:58:32] <travis-ci> radarhere/Pillow#1232 (getsize - 03ae486 : Andrew Murray): The build passed.
[09:58:32] <travis-ci> Change view : https://github.com/radarhere/Pillow/commit/03ae4860ef30
[09:58:32] <travis-ci> Build details : https://travis-ci.org/radarhere/Pillow/builds/160983148
[10:00:42] <travis-ci> radarhere/Pillow#1232 (getsize - 03ae486 : Andrew Murray): The build passed.
[10:00:42] <travis-ci> Change view : https://github.com/radarhere/Pillow/commit/03ae4860ef30
[10:00:43] <travis-ci> Build details : https://travis-ci.org/radarhere/Pillow/builds/160983148
[10:23:58] <travis-ci> radarhere/Pillow#1233 (master - 79fe70a : Hugo): The build passed.
[10:23:58] <travis-ci> Change view : https://github.com/radarhere/Pillow/compare/6e7553fb0f12...644ac4ed0140
[10:23:58] <travis-ci> Build details : https://travis-ci.org/radarhere/Pillow/builds/160988819
[10:24:17] <travis-ci> python-pillow/Pillow#3645 (master - 79fe70a : Hugo): The build passed.
[10:24:18] <travis-ci> Change view : https://github.com/python-pillow/Pillow/compare/6e7553fb0f12...79fe70a71a89
[10:24:18] <travis-ci> Build details : https://travis-ci.org/python-pillow/Pillow/builds/160988044
[10:26:36] <14WAABP62> radarhere/Pillow#1233 (master - 79fe70a : Hugo): The build passed.
[10:26:36] <14WAABP62> Change view : https://github.com/radarhere/Pillow/compare/6e7553fb0f12...644ac4ed0140
[10:26:36] <14WAABP62> Build details : https://travis-ci.org/radarhere/Pillow/builds/160988819
[12:17:20] <sdfjgkljndsfg> I followed the docs to create a custom plugin, but didn't see anything about how to install. I ended up getting it working by adding the script to <python install>/Lib/site-packages/PIL/, then editing <python install>/Lib/site-packages/PIL/__init__.py. That works, but just doesn't feel right. Is there a better way to add custom plugins?
[13:12:43] <wiredfool> sdfjgkljndsfg: a custom plugin for decoding an image?
[13:12:59] <sdfjgkljndsfg> yes
[13:14:22] <wiredfool> If you import it, and then call Image.register_* with the right info, that will hook the open/save routines
[13:15:09] <sdfjgkljndsfg> Ah, so typically the custom plugins stay local. I see. Thanks!
[13:15:23] <wiredfool> yeah, they don't need to be in the PIL namespace
[13:16:01] <sdfjgkljndsfg> Yeah, that makes sense.