Skip to content

Commit 74bb944

Browse files
committed
Drop Python 3.5 support
1 parent b547c2f commit 74bb944

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

.github/workflows/lint.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
restore-keys: |
1919
${{ runner.os }}-pip-
2020
- run: pip install --upgrade -r requirements_dev.txt
21-
- run: pip install black==19.10b0
2221
- run: black --check *.py */
2322
- run: isort --check-only *.py */
2423
- run: flake8

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
python-version: [ '3.5', '3.6', '3.7', '3.8']
9+
python-version: [ '3.6', '3.7', '3.8']
1010
steps:
1111
- uses: actions/checkout@v2
1212
- name: Setup python

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
### Removed
10+
11+
- We no longer support Python 3.5
12+
913
### Fixed
1014

1115
- Don't fail when an .ods column header is empty https://github.com/OpenDataServices/flatten-tool/issues/378

docs/getting-started.rst

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Getting Started
44
Prerequisites
55
-------------
66

7-
You will need Python 3.5 or later, including the venv module.
7+
You will need Python 3.6 or later, including the venv module.
88

99
Generally the venv module should come with your default Python install, but not on Ubuntu. On Ubuntu run:
1010

@@ -41,9 +41,7 @@ will print help information specific to that sub-command.
4141
Python Version Support
4242
----------------------
4343

44-
This code supports Python 3.5 (and later).
44+
This code supports Python 3.6 (and later).
4545

46-
Python 3.4 (and earlier Python 3 versions) is not supported, because one of the dependencies (openpyxl) does not
47-
support it.
48-
49-
Python 2 is not supported because it is now end of life.
46+
Python 3.5 and earlier (including Python 2) are not supported, because they are
47+
end of life, and some of the dependencies do not support them.

requirements_dev.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ sphinx
88
sphinx_rtd_theme
99
isort
1010
flake8
11+
black==19.10b0
1112
transifex-client

0 commit comments

Comments
 (0)