diff --git a/.travis.yml b/.travis.yml
index 0ce5566..fe9dc6b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,7 +2,9 @@ language: python
python:
- "3.5"
- "3.5-dev"
+ - "3.6"
- "3.6-dev"
+ - "3.7-dev"
- "nightly"
install:
- pip install pylint requests
diff --git a/README.rst b/README.rst
index bf97058..155ca9f 100644
--- a/README.rst
+++ b/README.rst
@@ -6,7 +6,7 @@ Installation
------------
instaloader is written in Python, thus ensure having
-`Python `__ (at least version 3.3) installed.
+`Python `__ (at least version 3.5) installed.
If you intend to use this tool under Windows, it is recommended
to install
diff --git a/instaloader.py b/instaloader.py
index 1165ad4..07262cb 100755
--- a/instaloader.py
+++ b/instaloader.py
@@ -685,7 +685,8 @@ def download_profiles(profilelist: List[str], username: Optional[str] = None, pa
save_session(session, username, sessionfile, quiet=quiet)
def main():
- parser = ArgumentParser(description=__doc__)
+ parser = ArgumentParser(description=__doc__,
+ epilog="Report issues at https://github.com/Thammus/instaloader/issues.")
parser.add_argument('profile', nargs='*',
help='Name of profile to download; @ to download all followees of '
'; or the special targets :feed-all or :feed-liked to '
diff --git a/setup.py b/setup.py
index 45de84f..ebe5846 100755
--- a/setup.py
+++ b/setup.py
@@ -19,7 +19,7 @@ setup(
'profile.',
long_description=open('README.rst').read(),
install_requires=['requests>=2.4'],
- python_requires='>=3.3',
+ python_requires='>=3.5',
entry_points={'console_scripts': ['instaloader=instaloader:main']},
zip_safe=True,
keywords='instagram downloader',