mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
d50445ff30
Similar to the recent adoption of Black. isort is a Python utility to sort imports alphabetically and automatically separate into sections. By using isort, contributors can quickly and automatically conform to the projects style without thinking. Just let the tool do it. Uses the configuration recommended by the Black to avoid conflicts of style. Rewrite TestImageQt.test_deprecated to no rely on import order.
11 lines
356 B
Ruby
Executable File
11 lines
356 B
Ruby
Executable File
#!/usr/bin/env python
|
|
from livereload.compiler import shell
|
|
from livereload.task import Task
|
|
|
|
Task.add('*.rst', shell('make html'))
|
|
Task.add('*/*.rst', shell('make html'))
|
|
Task.add('_static/*.css', shell('make clean html'))
|
|
Task.add('_templates/*', shell('make clean html'))
|
|
Task.add('Makefile', shell('make html'))
|
|
Task.add('conf.py', shell('make html'))
|