Skip to content

Commit b0f1dee

Browse files
committed
[breaking change] Finish Python 3.5 support
It has already reached to its end-of-life. See https://www.python.org/dev/peps/pep-0478/
1 parent 3ecbe4b commit b0f1dee

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/test-unstable-workaround-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v2
2121
with:
22-
python-version: 3.5
22+
python-version: 3.6
2323

2424
- name: Get pip cache
2525
id: pip-cache

.github/workflows/test-unstable-workaround-ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v2
2121
with:
22-
python-version: 3.5
22+
python-version: 3.6
2323

2424
- name: Get pip cache
2525
id: pip-cache

.github/workflows/test-unstable-workaround-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v2
2121
with:
22-
python-version: 3.5
22+
python-version: 3.6
2323

2424
- name: Get pip cache
2525
id: pip-cache

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest, windows-latest, macos-latest]
13-
python-version: [3.5, 3.6]
13+
python-version: [3.6, 3.8]
1414
pattern: [stable] # see test-unstabl-workaround-*.yml
1515
# pattern: [stable, unstable]
1616
exclude:
1717
- os: windows-latest
18-
python-version: 3.6
18+
python-version: 3.8
1919
- os: macos-latest
20-
python-version: 3.6
20+
python-version: 3.8
2121

2222

2323

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def load_module(module_path):
2222
url=version.__url__,
2323
license=version.__license__,
2424
description=version.__description__,
25-
python_requires='>=3.5',
25+
python_requires='>=3.6',
2626
install_requires=[
2727
'appdirs >= 1',
2828
'beautifulsoup4 >= 4',

0 commit comments

Comments
 (0)