mirror of
https://github.com/instaloader/instaloader.git
synced 2024-11-23 10:42:30 +01:00
be477e8a88
- State in README.rst and setup.py metainfo that we require Python>=3.5 - Let Travis-CI test against newer versions of Python - Let instaloader --help show where to report issues
13 lines
324 B
YAML
13 lines
324 B
YAML
language: python
|
|
python:
|
|
- "3.5"
|
|
- "3.5-dev"
|
|
- "3.6"
|
|
- "3.6-dev"
|
|
- "3.7-dev"
|
|
- "nightly"
|
|
install:
|
|
- pip install pylint requests
|
|
script:
|
|
- python3 -m pylint -r n -d bad-whitespace,bad-continuation,missing-docstring,multiple-imports,too-many-arguments,locally-disabled,line-too-long,invalid-sequence-index instaloader
|