diff --git a/.github/workflows/test-unstable-workaround-macos.yml b/.github/workflows/test-unstable-workaround-macos.yml index 15ac1b51..74c5dc89 100644 --- a/.github/workflows/test-unstable-workaround-macos.yml +++ b/.github/workflows/test-unstable-workaround-macos.yml @@ -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 diff --git a/.github/workflows/test-unstable-workaround-ubuntu.yml b/.github/workflows/test-unstable-workaround-ubuntu.yml index 61bd154c..fd69119e 100644 --- a/.github/workflows/test-unstable-workaround-ubuntu.yml +++ b/.github/workflows/test-unstable-workaround-ubuntu.yml @@ -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 diff --git a/.github/workflows/test-unstable-workaround-windows.yml b/.github/workflows/test-unstable-workaround-windows.yml index 2a71c156..ad28a654 100644 --- a/.github/workflows/test-unstable-workaround-windows.yml +++ b/.github/workflows/test-unstable-workaround-windows.yml @@ -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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 998c8e77..a501ef3b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 diff --git a/setup.py b/setup.py index fcf9dd99..5197e69c 100755 --- a/setup.py +++ b/setup.py @@ -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',