Codebase list python-procrunner / 126171f
drop Python 3.5 support Markus Gerstel 3 years ago
6 changed file(s) with 8 addition(s) and 16 deletion(s). Raw diff Collapse all Expand all
2525 vmImage: ubuntu-latest
2626 strategy:
2727 matrix:
28 python35:
29 PYTHON_VERSION: 3.5
3028 python36:
3129 PYTHON_VERSION: 3.6
3230 python37:
4240 vmImage: macOS-latest
4341 strategy:
4442 matrix:
45 python35:
46 PYTHON_VERSION: 3.5
4743 python36:
4844 PYTHON_VERSION: 3.6
4945 python37:
5955 vmImage: windows-latest
6056 strategy:
6157 matrix:
62 python35:
63 PYTHON_VERSION: 3.5
6458 python36:
6559 PYTHON_VERSION: 3.6
6660 python37:
1111 - python: 3.8
1212 - python: 3.7
1313 - python: 3.6
14 - python: 3.5
1514 - os: osx
1615 language: generic
1716 env: CONDA=3.8 TOXENV=py38
2120 - os: osx
2221 language: generic
2322 env: CONDA=3.6 TOXENV=py36
24 - os: osx
25 language: generic
26 env: CONDA=3.5 TOXENV=py35
2723
2824 allow_failures:
2925 - env: OPTIONAL=1
11 History
22 =======
33
4 2.2.0 (????-??-??)
5 ------------------
6
7 * Python 3.6+ only, support for Python 3.5 has been dropped
8
49 2.1.0 (2020-09-05)
510 ------------------
11
612 * `Deprecated array access on the return object (#60). <https://github.com/DiamondLightSource/python-procrunner/pull/60>`_
713 The return object will become a subprocess.CompletedProcess in a future
814 release, which no longer allows array-based access. For a translation table
44 # For Python versions available on Appveyor, see
55 # http://www.appveyor.com/docs/installed-software#python
66
7 - PYTHON: "C:\\Python35"
87 - PYTHON: "C:\\Python36"
98 - PYTHON: "C:\\Python37"
109 - PYTHON: "C:\\Python38"
11 - PYTHON: "C:\\Python35-x64"
1210 - PYTHON: "C:\\Python36-x64"
1311 - PYTHON: "C:\\Python37-x64"
1412 - PYTHON: "C:\\Python38-x64"
2424 "Natural Language :: English",
2525 "Operating System :: OS Independent",
2626 "Programming Language :: Python :: 3",
27 "Programming Language :: Python :: 3.5",
2827 "Programming Language :: Python :: 3.6",
2928 "Programming Language :: Python :: 3.7",
3029 "Programming Language :: Python :: 3.8",
3938 keywords="procrunner",
4039 name="procrunner",
4140 packages=find_packages(include=["procrunner"]),
42 python_requires=">=3.5",
41 python_requires=">=3.6",
4342 setup_requires=setup_requirements,
4443 test_suite="tests",
4544 tests_require=test_requirements,
00 [tox]
1 envlist = py35, py36, py37, py38, py39, flake8
1 envlist = py36, py37, py38, py39, flake8
22
33 [travis]
44 python =
66 3.8: py38
77 3.7: py37
88 3.6: py36
9 3.5: py35
109
1110 [testenv:azure]
1211 basepython = python