Codebase list python-procrunner / caa5813
Drop Python 3.4 support (#27) Markus Gerstel authored 4 years ago GitHub committed 4 years ago
5 changed file(s) with 4 addition(s) and 9 deletion(s). Raw diff Collapse all Expand all
88 sudo: true
99 - python: 3.6
1010 - python: 3.5
11 - python: 3.4
1211 - python: 2.7
1312 - python: pypy
1413 - os: osx
101101 2. If the pull request adds functionality, the docs should be updated. Put
102102 your new functionality into a function with a docstring, and add the
103103 feature to the list in README.rst.
104 3. The pull request should work for Python 2.7, 3.4, 3.5, 3.6, 3.7, and for PyPy. Check
104 3. The pull request should work for Python 2.7, 3.5, 3.6, 3.7, and for PyPy. Check
105105 https://travis-ci.org/DiamondLightSource/python-procrunner/pull_requests
106106 and make sure that the tests pass for all supported Python versions.
107107
55 pytest==4.5.0 # pyup: <5.0 # for Python 2.7 support
66 pytest-runner==5.1
77 six==1.12.0
8 Sphinx==1.8.5 # pyup: <2.0 # for Python 2.7 and 3.4 support
8 Sphinx==1.8.5 # pyup: <2.0 # for Python 2.7 support
99 tox==3.13.1
1010 twine==1.13.0
1111 watchdog==0.9.0
1111
1212 requirements = [
1313 "six",
14 # PyWin32 is only supported on 2.7 and 3.5+
15 'pywin32; sys_platform=="win32" and python_version=="2.7"',
16 'pywin32; sys_platform=="win32" and python_version>="3.5"',
14 'pywin32; sys_platform=="win32"',
1715 ]
1816
1917 setup_requirements = []
3533 "Programming Language :: Python :: 2",
3634 "Programming Language :: Python :: 2.7",
3735 "Programming Language :: Python :: 3",
38 "Programming Language :: Python :: 3.4",
3936 "Programming Language :: Python :: 3.5",
4037 "Programming Language :: Python :: 3.6",
4138 "Programming Language :: Python :: 3.7",
00 [tox]
1 envlist = py27, py34, py35, py36, py37, py38, flake8
1 envlist = py27, py35, py36, py37, py38, flake8
22
33 [travis]
44 python =
66 3.7: py37
77 3.6: py36
88 3.5: py35
9 3.4: py34
109 2.7: py27
1110
1211 [testenv:flake8]