Skip to content

Commit 126171f

Browse files
committed
drop Python 3.5 support
1 parent 29d5c06 commit 126171f

File tree

6 files changed

+8
-16
lines changed

6 files changed

+8
-16
lines changed

.azure-pipelines.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ jobs:
2626
vmImage: ubuntu-latest
2727
strategy:
2828
matrix:
29-
python35:
30-
PYTHON_VERSION: 3.5
3129
python36:
3230
PYTHON_VERSION: 3.6
3331
python37:
@@ -43,8 +41,6 @@ jobs:
4341
vmImage: macOS-latest
4442
strategy:
4543
matrix:
46-
python35:
47-
PYTHON_VERSION: 3.5
4844
python36:
4945
PYTHON_VERSION: 3.6
5046
python37:
@@ -60,8 +56,6 @@ jobs:
6056
vmImage: windows-latest
6157
strategy:
6258
matrix:
63-
python35:
64-
PYTHON_VERSION: 3.5
6559
python36:
6660
PYTHON_VERSION: 3.6
6761
python37:

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ matrix:
1212
- python: 3.8
1313
- python: 3.7
1414
- python: 3.6
15-
- python: 3.5
1615
- os: osx
1716
language: generic
1817
env: CONDA=3.8 TOXENV=py38
@@ -22,9 +21,6 @@ matrix:
2221
- os: osx
2322
language: generic
2423
env: CONDA=3.6 TOXENV=py36
25-
- os: osx
26-
language: generic
27-
env: CONDA=3.5 TOXENV=py35
2824

2925
allow_failures:
3026
- env: OPTIONAL=1

HISTORY.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@
22
History
33
=======
44

5+
2.2.0 (????-??-??)
6+
------------------
7+
8+
* Python 3.6+ only, support for Python 3.5 has been dropped
9+
510
2.1.0 (2020-09-05)
611
------------------
12+
713
* `Deprecated array access on the return object (#60). <https://github.com/DiamondLightSource/python-procrunner/pull/60>`_
814
The return object will become a subprocess.CompletedProcess in a future
915
release, which no longer allows array-based access. For a translation table

appveyor.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@ environment:
55
# For Python versions available on Appveyor, see
66
# http://www.appveyor.com/docs/installed-software#python
77

8-
- PYTHON: "C:\\Python35"
98
- PYTHON: "C:\\Python36"
109
- PYTHON: "C:\\Python37"
1110
- PYTHON: "C:\\Python38"
12-
- PYTHON: "C:\\Python35-x64"
1311
- PYTHON: "C:\\Python36-x64"
1412
- PYTHON: "C:\\Python37-x64"
1513
- PYTHON: "C:\\Python38-x64"

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
"Natural Language :: English",
2626
"Operating System :: OS Independent",
2727
"Programming Language :: Python :: 3",
28-
"Programming Language :: Python :: 3.5",
2928
"Programming Language :: Python :: 3.6",
3029
"Programming Language :: Python :: 3.7",
3130
"Programming Language :: Python :: 3.8",
@@ -40,7 +39,7 @@
4039
keywords="procrunner",
4140
name="procrunner",
4241
packages=find_packages(include=["procrunner"]),
43-
python_requires=">=3.5",
42+
python_requires=">=3.6",
4443
setup_requires=setup_requirements,
4544
test_suite="tests",
4645
tests_require=test_requirements,

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
[tox]
2-
envlist = py35, py36, py37, py38, py39, flake8
2+
envlist = py36, py37, py38, py39, flake8
33

44
[travis]
55
python =
66
3.9: py39
77
3.8: py38
88
3.7: py37
99
3.6: py36
10-
3.5: py35
1110

1211
[testenv:azure]
1312
basepython = python

0 commit comments

Comments
 (0)