Skip to content

Commit 7001800

Browse files
authored
Drop 3.6 (#207)
GitHub is raggedly allowing 3.5 and 3.6 support in Linux to drop from the `setup-python` action as they start using Ubuntu 22.04 instead of 20.04. actions/setup-python#544 Example failure at https://github.com/python-qt-tools/PyQt5-stubs/actions/runs/3645895301/jobs/6156457796#step:3:9. ``` Version 3.6.0-alpha - 3.6.X was not found in the local cache Error: Version 3.6.0-alpha - 3.6.X with arch x64 not found The list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json ``` We could also just make our matrix ragged as well and only drop the Linux testing. Or, explicitly call out the 20.04 runners for awhile. Let me know what you think.
2 parents 15fbb1a + 51b1360 commit 7001800

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/ci.yml

-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ jobs:
3636
runs-on: windows-latest
3737
tox: windows
3838
python:
39-
- name: CPython 3.6
40-
tox: py36
41-
action: 3.6
4239
- name: CPython 3.7
4340
tox: py37
4441
action: 3.7

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def find_version(*file_paths):
4747
long_description=long_description,
4848
long_description_content_type="text/markdown",
4949
version=find_version('PyQt5-stubs', '__init__.pyi'),
50-
python_requires=">= 3.5",
50+
python_requires=">= 3.7",
5151
package_data={"PyQt5-stubs": ['*.pyi']},
5252
packages=["PyQt5-stubs"],
5353
extras_require={

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py3{6,7,8,9,10}-{windows,linux}
2+
envlist = py3{7,8,9,10}-{windows,linux}
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)