Skip to content

Commit

Permalink
Test workflow update
Browse files Browse the repository at this point in the history
  • Loading branch information
lmbelo committed Nov 11, 2024
1 parent fc474a5 commit 045bde1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
config:
- { os: windows-latest, arch: AMD64, python-arch: x64, name: windows-latest-x64 }
- { os: windows-latest, arch: x86, python-arch: x86, name: windows-latest-x86 }
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
python: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion delphivcl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def find_extension_module():
plat_sys = platform.system()
lib_dir = None

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

if plat_sys == "Windows":
Expand Down

0 comments on commit 045bde1

Please sign in to comment.