Drop Python 3.4 support (#27)
Markus Gerstel authored 4 years ago
GitHub committed 4 years ago
8 | 8 |
sudo: true
|
9 | 9 |
- python: 3.6
|
10 | 10 |
- python: 3.5
|
11 | |
- python: 3.4
|
12 | 11 |
- python: 2.7
|
13 | 12 |
- python: pypy
|
14 | 13 |
- os: osx
|
101 | 101 |
2. If the pull request adds functionality, the docs should be updated. Put
|
102 | 102 |
your new functionality into a function with a docstring, and add the
|
103 | 103 |
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
|
105 | 105 |
https://travis-ci.org/DiamondLightSource/python-procrunner/pull_requests
|
106 | 106 |
and make sure that the tests pass for all supported Python versions.
|
107 | 107 |
|
5 | 5 |
pytest==4.5.0 # pyup: <5.0 # for Python 2.7 support
|
6 | 6 |
pytest-runner==5.1
|
7 | 7 |
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
|
9 | 9 |
tox==3.13.1
|
10 | 10 |
twine==1.13.0
|
11 | 11 |
watchdog==0.9.0
|
11 | 11 |
|
12 | 12 |
requirements = [
|
13 | 13 |
"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"',
|
17 | 15 |
]
|
18 | 16 |
|
19 | 17 |
setup_requirements = []
|
|
35 | 33 |
"Programming Language :: Python :: 2",
|
36 | 34 |
"Programming Language :: Python :: 2.7",
|
37 | 35 |
"Programming Language :: Python :: 3",
|
38 | |
"Programming Language :: Python :: 3.4",
|
39 | 36 |
"Programming Language :: Python :: 3.5",
|
40 | 37 |
"Programming Language :: Python :: 3.6",
|
41 | 38 |
"Programming Language :: Python :: 3.7",
|
0 | 0 |
[tox]
|
1 | |
envlist = py27, py34, py35, py36, py37, py38, flake8
|
|
1 |
envlist = py27, py35, py36, py37, py38, flake8
|
2 | 2 |
|
3 | 3 |
[travis]
|
4 | 4 |
python =
|
|
6 | 6 |
3.7: py37
|
7 | 7 |
3.6: py36
|
8 | 8 |
3.5: py35
|
9 | |
3.4: py34
|
10 | 9 |
2.7: py27
|
11 | 10 |
|
12 | 11 |
[testenv:flake8]
|