Skip to content

Commit

Permalink
Merge pull request #116 from online-judge-tools/stop-python35
Browse files Browse the repository at this point in the history
[breaking change] Finish Python 3.5 support
  • Loading branch information
kmyk authored Oct 16, 2020
2 parents 25d27af + b0f1dee commit a58d7d8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-unstable-workaround-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.5
python-version: 3.6

- name: Get pip cache
id: pip-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-unstable-workaround-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.5
python-version: 3.6

- name: Get pip cache
id: pip-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-unstable-workaround-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.5
python-version: 3.6

- name: Get pip cache
id: pip-cache
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.5, 3.6]
python-version: [3.6, 3.8]
pattern: [stable] # see test-unstabl-workaround-*.yml
# pattern: [stable, unstable]
exclude:
- os: windows-latest
python-version: 3.6
python-version: 3.8
- os: macos-latest
python-version: 3.6
python-version: 3.8



Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def load_module(module_path):
url=version.__url__,
license=version.__license__,
description=version.__description__,
python_requires='>=3.5',
python_requires='>=3.6',
install_requires=[
'appdirs >= 1',
'beautifulsoup4 >= 4',
Expand Down

0 comments on commit a58d7d8

Please sign in to comment.