File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11language : python
2- python : 3.5
3- env : # These should match the tox env list
4- - TOXENV=py27
5- - TOXENV=py34
6- - TOXENV=py35
7- - TOXENV=pypy
2+ sudo : false
3+ matrix :
4+ include : # These should match the tox env list
5+ - env : TOXENV=py27
6+ - env : TOXENV=py35
7+ python : 3.5
8+ - env : TOXENV=py36
9+ python : 3.6
10+ - env : TOXENV=pypy
811install : pip install coveralls tox
912script : tox
1013before_install :
1114 # Install git-lfs for a test
1215 - ' ./get-git-lfs.py && export PATH="/tmp/git-lfs:$PATH"'
13- after_success :
14- - coveralls
15- sudo : false
16+ after_success : coveralls
1617cache :
1718 directories :
1819 - $HOME/.cache/pip
Original file line number Diff line number Diff line change 11environment :
22 matrix :
33 - TOXENV : py27
4- - TOXENV : py35
4+ - TOXENV : py36
55
66install :
7- - " SET PATH=C:\\ Python35 ;C:\\ Python35 \\ Scripts;%PATH%"
7+ - " SET PATH=C:\\ Python36 ;C:\\ Python36 \\ Scripts;%PATH%"
88 - pip install tox
99
1010# Not a C# project
Original file line number Diff line number Diff line change 1- #!/usr/bin/env python3.4
1+ #!/usr/bin/env python3
22"""This is a script to install git-lfs to a tempdir for use in tests"""
33import io
44import os .path
Original file line number Diff line number Diff line change 1414 classifiers = [
1515 'License :: OSI Approved :: MIT License' ,
1616 'Programming Language :: Python :: 2' ,
17- 'Programming Language :: Python :: 2.6' ,
1817 'Programming Language :: Python :: 2.7' ,
1918 'Programming Language :: Python :: 3' ,
20- 'Programming Language :: Python :: 3.4' ,
2119 'Programming Language :: Python :: 3.5' ,
20+ 'Programming Language :: Python :: 3.6' ,
2221 'Programming Language :: Python :: Implementation :: CPython' ,
2322 'Programming Language :: Python :: Implementation :: PyPy' ,
2423 ],
2726 install_requires = [
2827 # quickfix to prevent pep8 conflicts
2928 'flake8!=2.5.3' ,
30- 'argparse' ,
3129 'autopep8>=1.1' ,
3230 'pyyaml' ,
3331 'simplejson' ,
You can’t perform that action at this time.
0 commit comments