mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-08 09:04:29 +01:00
4241381d82
It is often the case that the user has no administrative control over the server that is being used. As such it is important to support as many versions as possible, at least on the remote server end. These fixes will allow sshuttle to be used with servers that have only python 2.4 or python 2.6 installed while hopefully not breaking the compatibility with 2.7 and 3.5.
14 lines
146 B
YAML
14 lines
146 B
YAML
language: python
|
|
python:
|
|
- 2.6
|
|
- 2.7
|
|
- 3.4
|
|
- 3.5
|
|
- pypy
|
|
|
|
install:
|
|
- travis_retry pip install -q pytest mock
|
|
|
|
script:
|
|
- PYTHONPATH=. py.test
|