diff options
| author | Dylan Araps <[email protected]> | 2017-08-12 18:42:27 +1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-08-12 18:42:27 +1000 |
| commit | 8be48c07fff889ed085744cc0cf585b6d0b71a89 (patch) | |
| tree | 839edfa96574721cc6fc82ef18059d75ebef792e /setup.py | |
| parent | version: bump (diff) | |
| parent | tests: Add a test for sequence order. (diff) | |
| download | pywal-8be48c07fff889ed085744cc0cf585b6d0b71a89.tar.xz pywal-8be48c07fff889ed085744cc0cf585b6d0b71a89.zip | |
Merge pull request #79 from dylanaraps/35
general: Add support for Python 3.5
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ import setuptools try: import pywal except (ImportError, SyntaxError): - print("error: pywal requires Python 3.6 or greater.") + print("error: pywal requires Python 3.5 or greater.") quit(1) |