Skip to content

Commit 51b62e0

Browse files
authored
Test workflow update
1 parent c949da0 commit 51b62e0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/pypi.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ${{ matrix.os }}
5050
strategy:
5151
matrix:
52-
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
52+
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
5353
include:
5454
- os: [windows-latest]
5555
arch: ["x86"]
@@ -93,7 +93,7 @@ jobs:
9393
runs-on: ${{ matrix.os }}
9494
strategy:
9595
matrix:
96-
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
96+
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
9797
include:
9898
- os: [windows-latest]
9999
arch: ["AMD64"]

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
config:
1818
- { os: windows-latest, arch: AMD64, python-arch: x64, name: windows-latest-x64 }
1919
- { os: windows-latest, arch: x86, python-arch: x86, name: windows-latest-x86 }
20-
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
20+
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
2121
steps:
2222
- name: Check out repository
2323
uses: actions/checkout@v4

delphivcl/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def find_extension_module():
1111
plat_sys = platform.system()
1212
lib_dir = None
1313

14-
if not (py_ver in ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]):
14+
if not (py_ver in ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]):
1515
raise ValueError(f"DelphiVCL doesn't support Python{py_ver}.")
1616

1717
if plat_sys == "Windows":

0 commit comments

Comments
 (0)