Skip to content

Commit a444bd1

Browse files
authored
Test workflow update
1 parent 4c433db commit a444bd1

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/pypi.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ jobs:
166166
runs-on: ${{ matrix.os }}
167167
strategy:
168168
matrix:
169-
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
169+
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
170170
include:
171171
- os: [windows-latest]
172172
arch: ["x86"]
@@ -210,7 +210,7 @@ jobs:
210210
runs-on: ${{ matrix.os }}
211211
strategy:
212212
matrix:
213-
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
213+
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
214214
include:
215215
- os: [windows-latest]
216216
arch: ["AMD64"]
@@ -254,7 +254,7 @@ jobs:
254254
runs-on: ${{ matrix.os }}
255255
strategy:
256256
matrix:
257-
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
257+
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
258258
include:
259259
- os: [ubuntu-20.04] #ubuntu-latest doesn't support cp36
260260
arch: ["x86_64"]
@@ -297,7 +297,7 @@ jobs:
297297
runs-on: ${{ matrix.os }}
298298
strategy:
299299
matrix:
300-
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
300+
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
301301
include:
302302
- os: [macos-13] #macos-latest is arm only
303303
arch: ["x86_64"]

.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

delphifmx/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def find_extension_module():
1313
lib_dir = None
1414
lib_ext = None
1515

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

1919
if plat_sys == "Windows":

0 commit comments

Comments
 (0)