Made work on Ubuntu 17.10.

- Changed to python3.6.
- Accepted minor differences in golden files.
- php is now 7.1.
- Updated README.
- Need to test that the AppImage still works.
This commit is contained in:
Andrew Hamilton 2017-10-27 12:39:50 +10:00
parent f3fea9e547
commit 4935c585aa
23 changed files with 28 additions and 26 deletions

View file

@ -612,10 +612,10 @@ def uncrustify(path):
return status, _syntax_highlight_using_path(stdout, path)
@deps(deps={"php7.0-cli"}, url="https://en.wikipedia.org/wiki/PHP",
executables={"php7.0"})
@deps(deps={"php7.1-cli"}, url="https://en.wikipedia.org/wiki/PHP",
executables={"php7.1"})
def php7_syntax(path):
return _run_command(["php7.0", "--syntax-check", path])
return _run_command(["php7.1", "--syntax-check", path])
def _pil_pixels(pil_image):